@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
23 lines (19 loc) • 453 B
text/typescript
/* eslint-disable sort-keys-fix/sort-keys-fix, typescript-sort-keys/interface */
/**
* EdgeConfig 完整配置类型
*/
export interface EdgeConfigData {
/**
* Assistant blacklist
*/
assistant_blacklist?: string[];
/**
* Assistant whitelist
*/
assistant_whitelist?: string[];
/**
* Feature flags configuration
*/
feature_flags?: Record<string, boolean | string[]>;
}
export type EdgeConfigKeys = keyof EdgeConfigData;