LibreChat / api /cache /keyvFiles.js
N.Achyuth Reddy
Upload 683 files
9705b6c
raw
history blame
335 Bytes
const { KeyvFile } = require('keyv-file');
const logFile = new KeyvFile({ filename: './data/logs.json' });
const pendingReqFile = new KeyvFile({ filename: './data/pendingReqCache.json' });
const violationFile = new KeyvFile({ filename: './data/violations.json' });
module.exports = {
logFile,
pendingReqFile,
violationFile,
};