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.

52 lines (44 loc) 1.65 kB
import { ModelProvider } from '../types'; import { LobeOpenAICompatibleFactory } from '../utils/openaiCompatibleFactory'; import type { ChatModelCard } from '@/types/llm'; export interface FireworksAIModelCard { context_length: number; id: string; supports_image_input: boolean; supports_tools: boolean; } export const LobeFireworksAI = LobeOpenAICompatibleFactory({ baseURL: 'https://api.fireworks.ai/inference/v1', debug: { chatCompletion: () => process.env.DEBUG_FIREWORKSAI_CHAT_COMPLETION === '1', }, models: async ({ client }) => { const { LOBE_DEFAULT_MODEL_LIST } = await import('@/config/aiModels'); const reasoningKeywords = [ 'deepseek-r1', 'qwq', ]; const modelsPage = await client.models.list() as any; const modelList: FireworksAIModelCard[] = modelsPage.data; return modelList .map((model) => { const knownModel = LOBE_DEFAULT_MODEL_LIST.find((m) => model.id.toLowerCase() === m.id.toLowerCase()); return { contextWindowTokens: model.context_length, displayName: knownModel?.displayName ?? undefined, enabled: knownModel?.enabled || false, functionCall: model.supports_tools || model.id.toLowerCase().includes('function'), id: model.id, reasoning: reasoningKeywords.some(keyword => model.id.toLowerCase().includes(keyword)) || knownModel?.abilities?.reasoning || false, vision: model.supports_image_input, }; }) .filter(Boolean) as ChatModelCard[]; }, provider: ModelProvider.FireworksAI, });