mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02:00
12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
![]() |
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,
|
||
|
};
|