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.

87 lines (83 loc) 1.91 kB
import { AIChatModelCard } from '@/types/aiModel'; const cloudflareChatModels: AIChatModelCard[] = [ { abilities: { reasoning: true, }, contextWindowTokens: 80_000, displayName: 'deepseek r1 (distill qwen 32b)', enabled: true, id: '@cf/deepseek-ai/deepseek-r1-distill-qwen-32b', type: 'chat', }, { abilities: { reasoning: true, }, contextWindowTokens: 24_000, displayName: 'qwq 32b', enabled: true, id: '@cf/qwen/qwq-32b', type: 'chat', }, { contextWindowTokens: 32_768, displayName: 'qwen2.5 coder 32b', id: '@cf/qwen/qwen2.5-coder-32b-instruct', type: 'chat', }, { contextWindowTokens: 80_000, displayName: 'gemma 3 12b', id: '@cf/google/gemma-3-12b-it', type: 'chat', }, { abilities: { functionCall: true, }, contextWindowTokens: 24_000, displayName: 'llama 3.3 70b', id: '@cf/meta/llama-3.3-70b-instruct-fp8-fast', type: 'chat', }, { abilities: { functionCall: true, }, contextWindowTokens: 131_000, displayName: 'llama 4 17b', id: '@cf/meta/llama-4-scout-17b-16e-instruct', type: 'chat', }, { abilities: { functionCall: true, }, contextWindowTokens: 128_000, displayName: 'mistral small 3.1 24b', id: '@cf/mistralai/mistral-small-3.1-24b-instruct', type: 'chat', }, { contextWindowTokens: 8192, displayName: 'openchat-3.5-0106', id: '@cf/openchat/openchat-3.5-0106', type: 'chat', }, { contextWindowTokens: 7500, displayName: 'qwen1.5-14b-chat-awq', enabled: true, id: '@cf/qwen/qwen1.5-14b-chat-awq', type: 'chat', }, { contextWindowTokens: 128_000, displayName: 'llama 3.1 8b', id: '@cf/meta/llama-3.1-8b-instruct-fast', type: 'chat', }, ]; export const allModels = [...cloudflareChatModels]; export default allModels;