@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.
34 lines (30 loc) • 1.03 kB
text/typescript
import { UserSettings } from '@lobechat/types';
import { DEFAULT_AGENT } from './agent';
import { DEFAULT_COMMON_SETTINGS } from './common';
import { DEFAULT_HOTKEY_CONFIG } from './hotkey';
import { DEFAULT_IMAGE_CONFIG } from './image';
import { DEFAULT_LLM_CONFIG } from './llm';
import { DEFAULT_SYSTEM_AGENT_CONFIG } from './systemAgent';
import { DEFAULT_TOOL_CONFIG } from './tool';
import { DEFAULT_TTS_CONFIG } from './tts';
export * from './agent';
export * from './common';
export * from './group';
export * from './hotkey';
export * from './image';
export * from './knowledge';
export * from './llm';
export * from './systemAgent';
export * from './tool';
export * from './tts';
export const DEFAULT_SETTINGS: UserSettings = {
defaultAgent: DEFAULT_AGENT,
general: DEFAULT_COMMON_SETTINGS,
hotkey: DEFAULT_HOTKEY_CONFIG,
image: DEFAULT_IMAGE_CONFIG,
keyVaults: {},
languageModel: DEFAULT_LLM_CONFIG,
systemAgent: DEFAULT_SYSTEM_AGENT_CONFIG,
tool: DEFAULT_TOOL_CONFIG,
tts: DEFAULT_TTS_CONFIG,
};