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.

34 lines (27 loc) 1.07 kB
import { resolve } from 'node:path'; import { DEFAULT_MODEL_PROVIDER_LIST } from '@/config/modelProviders'; export const root = resolve(__dirname, '../..'); export interface DataItem { author: string; createdAt: string; homepage: string; identifier: string; meta: { avatar: string; description: string; tags: string[]; title: string }; } export const AGENT_URL = 'https://chat-agents.lobehub.com/index.json'; export const AGENT_I18N_URL = (lang: string) => `https://chat-agents.lobehub.com/index.${lang}.json`; export const PLUGIN_URL = 'https://chat-plugins.lobehub.com/index.json'; export const PLUGIN_I18N_URL = (lang: string) => `https://chat-plugins.lobehub.com/index.${lang}.json`; export const AGENT_SPLIT = '<!-- AGENT LIST -->'; export const PLUGIN_SPLIT = '<!-- PLUGIN LIST -->'; export const PROVIDER_SPLIT = '<!-- PROVIDER LIST -->'; export const PROVIDER_LIST = DEFAULT_MODEL_PROVIDER_LIST.filter( (item) => item.chatModels.length > 0 && item.id !== 'lobehub', ).map((item) => { return { id: item.id, name: item.name, }; });