mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
16 lines
524 B
JavaScript
16 lines
524 B
JavaScript
|
|
/**
|
||
|
|
* @typedef {Object} CacheKeys
|
||
|
|
* @property {'config'} CONFIG - Key for the config cache.
|
||
|
|
* @property {'modelsConfig'} MODELS_CONFIG - Key for the model config cache.
|
||
|
|
* @property {'defaultConfig'} DEFAULT_CONFIG - Key for the default config cache.
|
||
|
|
* @property {'overrideConfig'} OVERRIDE_CONFIG - Key for the override config cache.
|
||
|
|
*/
|
||
|
|
const CacheKeys = {
|
||
|
|
CONFIG: 'config',
|
||
|
|
MODELS_CONFIG: 'modelsConfig',
|
||
|
|
DEFAULT_CONFIG: 'defaultConfig',
|
||
|
|
OVERRIDE_CONFIG: 'overrideConfig',
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = { CacheKeys };
|