UNPKG

@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.

16 lines (14 loc) 314 B
export type StorageMode = 'local' | 'cloud' | 'selfHost'; export enum StorageModeEnum { Cloud = 'cloud', Local = 'local', SelfHost = 'selfHost', } /** * 远程服务器配置相关的事件 */ export interface DataSyncConfig { active?: boolean; remoteServerUrl?: string; storageMode: StorageMode; }