Skip to content

Commit 66d4edd

Browse files
authored
💄 style: Add HuggingFace Model: DeepSeek R1 (#5564)
1 parent 223e3e4 commit 66d4edd

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

Diff for: src/config/aiModels/huggingface.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const huggingfaceChatModels: AIChatModelCard[] = [
55
contextWindowTokens: 32_768,
66
description: 'Mistral AI的指令调优模型',
77
displayName: 'Mistral 7B Instruct v0.3',
8-
enabled: true,
98
id: 'mistralai/Mistral-7B-Instruct-v0.3',
109
type: 'chat',
1110
},
@@ -34,6 +33,7 @@ const huggingfaceChatModels: AIChatModelCard[] = [
3433
contextWindowTokens: 32_768,
3534
description: 'Qwen QwQ 是由 Qwen 团队开发的实验研究模型,专注于提升AI推理能力。',
3635
displayName: 'QwQ 32B Preview',
36+
enabled: true,
3737
id: 'Qwen/QwQ-32B-Preview',
3838
type: 'chat',
3939
},
@@ -49,6 +49,13 @@ const huggingfaceChatModels: AIChatModelCard[] = [
4949
id: 'NousResearch/Hermes-3-Llama-3.1-8B',
5050
type: 'chat',
5151
},
52+
{
53+
contextWindowTokens: 16_384,
54+
displayName: 'DeepSeek R1',
55+
enabled: true,
56+
id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
57+
type: 'chat',
58+
},
5259
];
5360

5461
export const allModels = [...huggingfaceChatModels];

Diff for: src/config/modelProviders/huggingface.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const HuggingFace: ModelProviderCard = {
66
contextWindowTokens: 32_768,
77
description: 'Mistral AI的指令调优模型',
88
displayName: 'Mistral 7B Instruct v0.3',
9-
enabled: true,
109
id: 'mistralai/Mistral-7B-Instruct-v0.3',
1110
},
1211
{
@@ -31,6 +30,7 @@ const HuggingFace: ModelProviderCard = {
3130
contextWindowTokens: 32_768,
3231
description: 'Qwen QwQ 是由 Qwen 团队开发的实验研究模型,专注于提升AI推理能力。',
3332
displayName: 'QwQ 32B Preview',
33+
enabled: true,
3434
id: 'Qwen/QwQ-32B-Preview',
3535
},
3636
{
@@ -43,6 +43,12 @@ const HuggingFace: ModelProviderCard = {
4343
displayName: 'Hermes 3 Llama 3.1 8B',
4444
id: 'NousResearch/Hermes-3-Llama-3.1-8B',
4545
},
46+
{
47+
contextWindowTokens: 16_384,
48+
displayName: 'DeepSeek R1',
49+
enabled: true,
50+
id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
51+
},
4652
],
4753
checkModel: 'mistralai/Mistral-7B-Instruct-v0.2',
4854
description:

0 commit comments

Comments
 (0)