@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) • 337 B
text/typescript
import { DEFAULT_MODEL_PROVIDER_LIST } from '@/config/modelProviders';
const locales: {
[key: string]: {
description?: string;
};
} = {};
DEFAULT_MODEL_PROVIDER_LIST.forEach((provider) => {
if (!provider.description) return;
locales[provider.id] = {
description: provider.description,
};
});
export default locales;