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.

17 lines (13 loc) 311 B
import { LOBE_DEFAULT_MODEL_LIST } from '@/config/aiModels'; const locales: { [key: string]: { description?: string; }; } = {}; LOBE_DEFAULT_MODEL_LIST.forEach((model) => { if (!model.description) return; locales[model.id] = { description: model.description, }; }); export default locales;