Skip to content

Commit 1f6ea62

Browse files
chore: update supported llms
1 parent e38f8de commit 1f6ea62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/controls/ModelItem.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { PUBLIC_DEFAULT_MODEL } from 'astro:env/client'
33
import { persisted } from 'svelte-persisted-store'
44
5-
type Model = 'gpt-3.5-turbo-0125' | 'gpt-4o-mini' | 'Qwen2.5-72B-Instruct' | 'QwQ-32B-Preview' | 'deepseek-ai/DeepSeek-V2.5' | 'THUDM/glm-4-9b-chat' | 'internlm/internlm2_5-20b-chat' | 'gemma2-9b-it' | 'nous-hermes-2-mixtral-8x7b-dpo' | 'llama-3.2-90b-vision-preview' | 'llama-3.3-70b' | 'llama3.1-70b' | 'azure:gpt-4o' | 'azure:gpt-4o-mini' | 'AI21-Jamba-1.5-Large' | 'AI21-Jamba-1.5-Mini' | 'Phi-3.5-MoE-instruct' | 'Meta-Llama-3.1-405B-Instruct' | 'Mistral-Nemo' | 'Mistral-large-2411' | 'yi-lightning' | 'grok-2-1212' | 'deepseek-chat'
5+
type Model = 'gpt-3.5-turbo-0125' | 'gpt-4o-mini' | 'qwen-2.5-32b' | 'QwQ-32B-Preview' | 'deepseek-ai/DeepSeek-V3' | 'THUDM/glm-4-9b-chat' | 'internlm/internlm2_5-20b-chat' | 'gemma2-9b-it' | 'nous-hermes-2-mixtral-8x7b-dpo' | 'llama-3.2-90b-vision-preview' | 'llama-3.3-70b' | 'llama3.1-70b' | 'azure:gpt-4o' | 'azure:gpt-4o-mini' | 'AI21-Jamba-1.5-Large' | 'AI21-Jamba-1.5-Mini' | 'Phi-3.5-MoE-instruct' | 'Meta-Llama-3.1-405B-Instruct' | 'Mistral-Nemo' | 'Mistral-large-2411' | 'yi-lightning' | 'grok-2-1212'
66
77
const defaultModel = PUBLIC_DEFAULT_MODEL as Model
88

src/components/controls/ModelSelector.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
</script>
55

66
<div class="grid grid-cols-2 w-full justify-between gap-1.5 text-sm">
7-
<ModelItem id="deepseek-chat" name="deepseek-v3" title="✨ 深度求索最新发布的 DeepSeek v3" />
7+
<ModelItem id="deepseek-ai/DeepSeek-V3" name="deepseek-v3" title="✨ 深度求索最新发布的 DeepSeek v3" />
88
<ModelItem id="llama-3.3-70b" name="llama3.3-70b" title="🚀 Meta 最新发布的 Llama3.3 70b" />
99
<ModelItem id="llama-3.2-90b-vision-preview" name="llama3.2-90b" title="🚀 Meta 最新发布的 Llama3.2 90b" />
1010
<ModelItem id="gemma2-9b-it" name="gemma2-9b-it" title="🚀 Google 最新发布的 Gemma 2" />
1111
<ModelItem id="gpt-4o-mini" name="gpt-4o-mini" title="🔥 OpenAI 最新的全能模型" />
1212
<ModelItem id="grok-2-1212" name="grok-2-1212" title="🚀 xAI 的第二代 Grok" />
1313
<!-- <ModelItem id="internlm/internlm2_5-20b-chat" name="internlm2.5-20b" title="✨ 书生·浦语" /> -->
14-
<ModelItem id="Qwen2.5-72B-Instruct" name="Qwen2.5-72B-Instruct" title="🚀 SambaNova 提供的超快 Qwen 2.5" />
14+
<ModelItem id="qwen-2.5-32b" name="qwen-2.5-32b" title="🚀 Groq 提供的超快 Qwen 2.5" />
1515
<ModelItem id="QwQ-32B-Preview" name="QwQ-32B-Preview" title="🚀 通义千问 QwQ" />
1616
<ModelItem id="yi-lightning" name="yi-lightning" title="⭐ 零一万物的霸榜 SOTA 模型" />
1717
<ModelItem id="THUDM/glm-4-9b-chat" name="glm-4-9b-chat" title="✨ 智谱 AI" />

0 commit comments

Comments
 (0)