@lobehub/chat 1.111.1 → 1.111.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/rules/code-review.mdc +2 -19
- package/.cursor/rules/cursor-ux.mdc +0 -72
- package/.cursor/rules/project-introduce.mdc +5 -5
- package/.cursor/rules/react-component.mdc +92 -73
- package/.cursor/rules/rules-attach.mdc +28 -61
- package/.cursor/rules/system-role.mdc +8 -20
- package/.cursor/rules/typescript.mdc +55 -14
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +5 -0
- package/package.json +1 -1
- package/packages/types/src/aiModel.ts +67 -46
- package/packages/types/src/llm.ts +3 -3
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/ProviderList/index.tsx +23 -12
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Overview/ModelList/index.tsx +23 -10
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +21 -12
- package/src/config/aiModels/ai21.ts +8 -4
- package/src/config/aiModels/ai360.ts +28 -14
- package/src/config/aiModels/aihubmix.ts +174 -86
- package/src/config/aiModels/anthropic.ts +97 -38
- package/src/config/aiModels/azure.ts +54 -32
- package/src/config/aiModels/azureai.ts +63 -37
- package/src/config/aiModels/baichuan.ts +24 -12
- package/src/config/aiModels/bedrock.ts +60 -30
- package/src/config/aiModels/cohere.ts +60 -30
- package/src/config/aiModels/deepseek.ts +10 -6
- package/src/config/aiModels/fireworksai.ts +88 -44
- package/src/config/aiModels/giteeai.ts +1 -1
- package/src/config/aiModels/github.ts +44 -26
- package/src/config/aiModels/google.ts +119 -68
- package/src/config/aiModels/groq.ts +48 -24
- package/src/config/aiModels/higress.ts +617 -310
- package/src/config/aiModels/hunyuan.ts +105 -54
- package/src/config/aiModels/infiniai.ts +104 -52
- package/src/config/aiModels/internlm.ts +16 -8
- package/src/config/aiModels/jina.ts +4 -2
- package/src/config/aiModels/minimax.ts +11 -10
- package/src/config/aiModels/mistral.ts +40 -20
- package/src/config/aiModels/moonshot.ts +42 -22
- package/src/config/aiModels/novita.ts +196 -98
- package/src/config/aiModels/openai.ts +270 -137
- package/src/config/aiModels/openrouter.ts +205 -100
- package/src/config/aiModels/perplexity.ts +36 -6
- package/src/config/aiModels/ppio.ts +76 -38
- package/src/config/aiModels/qwen.ts +257 -133
- package/src/config/aiModels/sambanova.ts +56 -28
- package/src/config/aiModels/sensenova.ts +100 -50
- package/src/config/aiModels/siliconcloud.ts +224 -112
- package/src/config/aiModels/stepfun.ts +44 -22
- package/src/config/aiModels/taichu.ts +8 -4
- package/src/config/aiModels/tencentcloud.ts +12 -6
- package/src/config/aiModels/upstage.ts +8 -4
- package/src/config/aiModels/v0.ts +15 -12
- package/src/config/aiModels/vertexai.ts +49 -27
- package/src/config/aiModels/volcengine.ts +110 -51
- package/src/config/aiModels/wenxin.ts +179 -73
- package/src/config/aiModels/xai.ts +33 -19
- package/src/config/aiModels/zeroone.ts +48 -24
- package/src/config/aiModels/zhipu.ts +118 -69
- package/src/config/modelProviders/ai21.ts +0 -8
- package/src/config/modelProviders/ai360.ts +0 -20
- package/src/config/modelProviders/anthropic.ts +0 -56
- package/src/config/modelProviders/baichuan.ts +0 -30
- package/src/config/modelProviders/bedrock.ts +0 -74
- package/src/config/modelProviders/deepseek.ts +0 -13
- package/src/config/modelProviders/fireworksai.ts +0 -88
- package/src/config/modelProviders/google.ts +0 -59
- package/src/config/modelProviders/groq.ts +0 -48
- package/src/config/modelProviders/higress.ts +0 -727
- package/src/config/modelProviders/hunyuan.ts +0 -45
- package/src/config/modelProviders/infiniai.ts +0 -60
- package/src/config/modelProviders/internlm.ts +0 -8
- package/src/config/modelProviders/mistral.ts +0 -48
- package/src/config/modelProviders/modelscope.ts +2 -1
- package/src/config/modelProviders/openai.ts +5 -100
- package/src/config/modelProviders/openrouter.ts +0 -77
- package/src/config/modelProviders/ppio.ts +0 -95
- package/src/config/modelProviders/qwen.ts +0 -165
- package/src/config/modelProviders/sensenova.ts +0 -45
- package/src/config/modelProviders/siliconcloud.ts +0 -266
- package/src/config/modelProviders/stepfun.ts +0 -60
- package/src/config/modelProviders/taichu.ts +0 -10
- package/src/config/modelProviders/wenxin.ts +0 -90
- package/src/config/modelProviders/xai.ts +0 -16
- package/src/config/modelProviders/zeroone.ts +0 -60
- package/src/config/modelProviders/zhipu.ts +0 -80
- package/src/features/Conversation/Extras/Usage/UsageDetail/ModelCard.tsx +4 -3
- package/src/features/Conversation/Extras/Usage/UsageDetail/pricing.ts +25 -15
- package/src/features/Conversation/Extras/Usage/UsageDetail/tokens.test.ts +7 -5
- package/src/features/Conversation/Extras/Usage/UsageDetail/tokens.ts +6 -5
- package/src/libs/model-runtime/utils/openaiCompatibleFactory/index.test.ts +54 -8
- package/src/server/routers/lambda/agent.ts +2 -2
- package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +0 -28
- package/src/server/services/discover/index.ts +7 -6
- package/src/server/services/user/index.ts +1 -2
- package/src/utils/__snapshots__/parseModels.test.ts.snap +28 -4
- package/src/utils/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -8
- package/src/utils/parseModels.test.ts +60 -9
- package/src/utils/pricing.test.ts +183 -0
- package/src/utils/pricing.ts +90 -0
@@ -10,11 +10,6 @@ const Qwen: ModelProviderCard = {
|
|
10
10
|
enabled: true,
|
11
11
|
functionCall: true,
|
12
12
|
id: 'qwen-turbo-latest',
|
13
|
-
pricing: {
|
14
|
-
currency: 'CNY',
|
15
|
-
input: 0.3,
|
16
|
-
output: 0.6,
|
17
|
-
},
|
18
13
|
},
|
19
14
|
{
|
20
15
|
contextWindowTokens: 131_072,
|
@@ -23,11 +18,6 @@ const Qwen: ModelProviderCard = {
|
|
23
18
|
enabled: true,
|
24
19
|
functionCall: true,
|
25
20
|
id: 'qwen-plus-latest',
|
26
|
-
pricing: {
|
27
|
-
currency: 'CNY',
|
28
|
-
input: 0.8,
|
29
|
-
output: 2,
|
30
|
-
},
|
31
21
|
},
|
32
22
|
{
|
33
23
|
contextWindowTokens: 32_768,
|
@@ -37,11 +27,6 @@ const Qwen: ModelProviderCard = {
|
|
37
27
|
enabled: true,
|
38
28
|
functionCall: true,
|
39
29
|
id: 'qwen-max-latest',
|
40
|
-
pricing: {
|
41
|
-
currency: 'CNY',
|
42
|
-
input: 20,
|
43
|
-
output: 60,
|
44
|
-
},
|
45
30
|
},
|
46
31
|
{
|
47
32
|
contextWindowTokens: 1_000_000,
|
@@ -49,11 +34,6 @@ const Qwen: ModelProviderCard = {
|
|
49
34
|
'通义千问超大规模语言模型,支持长文本上下文,以及基于长文档、多文档等多个场景的对话功能。',
|
50
35
|
displayName: 'Qwen Long',
|
51
36
|
id: 'qwen-long',
|
52
|
-
pricing: {
|
53
|
-
currency: 'CNY',
|
54
|
-
input: 0.5,
|
55
|
-
output: 2,
|
56
|
-
},
|
57
37
|
},
|
58
38
|
{
|
59
39
|
contextWindowTokens: 32_000,
|
@@ -62,11 +42,6 @@ const Qwen: ModelProviderCard = {
|
|
62
42
|
displayName: 'Qwen VL Plus',
|
63
43
|
enabled: true,
|
64
44
|
id: 'qwen-vl-plus-latest',
|
65
|
-
pricing: {
|
66
|
-
currency: 'CNY',
|
67
|
-
input: 1.5,
|
68
|
-
output: 4.5,
|
69
|
-
},
|
70
45
|
vision: true,
|
71
46
|
},
|
72
47
|
{
|
@@ -76,11 +51,6 @@ const Qwen: ModelProviderCard = {
|
|
76
51
|
displayName: 'Qwen VL Max',
|
77
52
|
enabled: true,
|
78
53
|
id: 'qwen-vl-max-latest',
|
79
|
-
pricing: {
|
80
|
-
currency: 'CNY',
|
81
|
-
input: 3,
|
82
|
-
output: 9,
|
83
|
-
},
|
84
54
|
vision: true,
|
85
55
|
},
|
86
56
|
{
|
@@ -89,11 +59,6 @@ const Qwen: ModelProviderCard = {
|
|
89
59
|
'通义千问OCR是文字提取专有模型,专注于文档、表格、试题、手写体文字等类型图像的文字提取能力。它能够识别多种文字,目前支持的语言有:汉语、英语、法语、日语、韩语、德语、俄语、意大利语、越南语、阿拉伯语。',
|
90
60
|
displayName: 'Qwen VL OCR',
|
91
61
|
id: 'qwen-vl-ocr-latest',
|
92
|
-
pricing: {
|
93
|
-
currency: 'CNY',
|
94
|
-
input: 5,
|
95
|
-
output: 5,
|
96
|
-
},
|
97
62
|
vision: true,
|
98
63
|
},
|
99
64
|
{
|
@@ -101,55 +66,30 @@ const Qwen: ModelProviderCard = {
|
|
101
66
|
description: '通义千问数学模型是专门用于数学解题的语言模型。',
|
102
67
|
displayName: 'Qwen Math Turbo',
|
103
68
|
id: 'qwen-math-turbo-latest',
|
104
|
-
pricing: {
|
105
|
-
currency: 'CNY',
|
106
|
-
input: 2,
|
107
|
-
output: 6,
|
108
|
-
},
|
109
69
|
},
|
110
70
|
{
|
111
71
|
contextWindowTokens: 4096,
|
112
72
|
description: '通义千问数学模型是专门用于数学解题的语言模型。',
|
113
73
|
displayName: 'Qwen Math Plus',
|
114
74
|
id: 'qwen-math-plus-latest',
|
115
|
-
pricing: {
|
116
|
-
currency: 'CNY',
|
117
|
-
input: 4,
|
118
|
-
output: 12,
|
119
|
-
},
|
120
75
|
},
|
121
76
|
{
|
122
77
|
contextWindowTokens: 131_072,
|
123
78
|
description: '通义千问代码模型。',
|
124
79
|
displayName: 'Qwen Coder Turbo',
|
125
80
|
id: 'qwen-coder-turbo-latest',
|
126
|
-
pricing: {
|
127
|
-
currency: 'CNY',
|
128
|
-
input: 2,
|
129
|
-
output: 6,
|
130
|
-
},
|
131
81
|
},
|
132
82
|
{
|
133
83
|
contextWindowTokens: 131_072,
|
134
84
|
description: '通义千问代码模型。',
|
135
85
|
displayName: 'Qwen Coder Plus',
|
136
86
|
id: 'qwen-coder-plus-latest',
|
137
|
-
pricing: {
|
138
|
-
currency: 'CNY',
|
139
|
-
input: 3.5,
|
140
|
-
output: 7,
|
141
|
-
},
|
142
87
|
},
|
143
88
|
{
|
144
89
|
contextWindowTokens: 32_768,
|
145
90
|
description: 'QwQ模型是由 Qwen 团队开发的实验性研究模型,专注于增强 AI 推理能力。',
|
146
91
|
displayName: 'QwQ 32B Preview',
|
147
92
|
id: 'qwq-32b-preview',
|
148
|
-
pricing: {
|
149
|
-
currency: 'CNY',
|
150
|
-
input: 3.5,
|
151
|
-
output: 7,
|
152
|
-
},
|
153
93
|
},
|
154
94
|
{
|
155
95
|
contextWindowTokens: 32_768,
|
@@ -157,11 +97,6 @@ const Qwen: ModelProviderCard = {
|
|
157
97
|
'QVQ模型是由 Qwen 团队开发的实验性研究模型,专注于提升视觉推理能力,尤其在数学推理领域。',
|
158
98
|
displayName: 'QVQ 72B Preview',
|
159
99
|
id: 'qvq-72b-preview',
|
160
|
-
pricing: {
|
161
|
-
currency: 'CNY',
|
162
|
-
input: 12,
|
163
|
-
output: 36,
|
164
|
-
},
|
165
100
|
releasedAt: '2024-12-25',
|
166
101
|
vision: true,
|
167
102
|
},
|
@@ -171,11 +106,6 @@ const Qwen: ModelProviderCard = {
|
|
171
106
|
displayName: 'Qwen2.5 7B',
|
172
107
|
functionCall: true,
|
173
108
|
id: 'qwen2.5-7b-instruct',
|
174
|
-
pricing: {
|
175
|
-
currency: 'CNY',
|
176
|
-
input: 0.5,
|
177
|
-
output: 1,
|
178
|
-
},
|
179
109
|
},
|
180
110
|
{
|
181
111
|
contextWindowTokens: 131_072,
|
@@ -183,11 +113,6 @@ const Qwen: ModelProviderCard = {
|
|
183
113
|
displayName: 'Qwen2.5 14B',
|
184
114
|
functionCall: true,
|
185
115
|
id: 'qwen2.5-14b-instruct',
|
186
|
-
pricing: {
|
187
|
-
currency: 'CNY',
|
188
|
-
input: 1,
|
189
|
-
output: 3,
|
190
|
-
},
|
191
116
|
},
|
192
117
|
{
|
193
118
|
contextWindowTokens: 131_072,
|
@@ -195,11 +120,6 @@ const Qwen: ModelProviderCard = {
|
|
195
120
|
displayName: 'Qwen2.5 32B',
|
196
121
|
functionCall: true,
|
197
122
|
id: 'qwen2.5-32b-instruct',
|
198
|
-
pricing: {
|
199
|
-
currency: 'CNY',
|
200
|
-
input: 3.5,
|
201
|
-
output: 7,
|
202
|
-
},
|
203
123
|
},
|
204
124
|
{
|
205
125
|
contextWindowTokens: 131_072,
|
@@ -207,11 +127,6 @@ const Qwen: ModelProviderCard = {
|
|
207
127
|
displayName: 'Qwen2.5 72B',
|
208
128
|
functionCall: true,
|
209
129
|
id: 'qwen2.5-72b-instruct',
|
210
|
-
pricing: {
|
211
|
-
currency: 'CNY',
|
212
|
-
input: 4,
|
213
|
-
output: 12,
|
214
|
-
},
|
215
130
|
},
|
216
131
|
{
|
217
132
|
contextWindowTokens: 1_000_000,
|
@@ -219,66 +134,36 @@ const Qwen: ModelProviderCard = {
|
|
219
134
|
displayName: 'Qwen2.5 14B 1M',
|
220
135
|
functionCall: true,
|
221
136
|
id: 'qwen2.5-14b-instruct-1m',
|
222
|
-
pricing: {
|
223
|
-
currency: 'CNY',
|
224
|
-
input: 1,
|
225
|
-
output: 3,
|
226
|
-
},
|
227
137
|
},
|
228
138
|
{
|
229
139
|
contextWindowTokens: 4096,
|
230
140
|
description: 'Qwen-Math 模型具有强大的数学解题能力。',
|
231
141
|
displayName: 'Qwen2.5 Math 7B',
|
232
142
|
id: 'qwen2.5-math-7b-instruct',
|
233
|
-
pricing: {
|
234
|
-
currency: 'CNY',
|
235
|
-
input: 1,
|
236
|
-
output: 2,
|
237
|
-
},
|
238
143
|
},
|
239
144
|
{
|
240
145
|
contextWindowTokens: 4096,
|
241
146
|
description: 'Qwen-Math 模型具有强大的数学解题能力。',
|
242
147
|
displayName: 'Qwen2.5 Math 72B',
|
243
148
|
id: 'qwen2.5-math-72b-instruct',
|
244
|
-
pricing: {
|
245
|
-
currency: 'CNY',
|
246
|
-
input: 4,
|
247
|
-
output: 12,
|
248
|
-
},
|
249
149
|
},
|
250
150
|
{
|
251
151
|
contextWindowTokens: 131_072,
|
252
152
|
description: '通义千问代码模型开源版。',
|
253
153
|
displayName: 'Qwen2.5 Coder 7B',
|
254
154
|
id: 'qwen2.5-coder-7b-instruct',
|
255
|
-
pricing: {
|
256
|
-
currency: 'CNY',
|
257
|
-
input: 1,
|
258
|
-
output: 2,
|
259
|
-
},
|
260
155
|
},
|
261
156
|
{
|
262
157
|
contextWindowTokens: 131_072,
|
263
158
|
description: '通义千问代码模型开源版。',
|
264
159
|
displayName: 'Qwen2.5 Coder 32B',
|
265
160
|
id: 'qwen2.5-coder-32b-instruct',
|
266
|
-
pricing: {
|
267
|
-
currency: 'CNY',
|
268
|
-
input: 3.5,
|
269
|
-
output: 7,
|
270
|
-
},
|
271
161
|
},
|
272
162
|
{
|
273
163
|
contextWindowTokens: 8000,
|
274
164
|
description: '以 Qwen-7B 语言模型初始化,添加图像模型,图像输入分辨率为448的预训练模型。',
|
275
165
|
displayName: 'Qwen VL',
|
276
166
|
id: 'qwen-vl-v1',
|
277
|
-
pricing: {
|
278
|
-
currency: 'CNY',
|
279
|
-
input: 0,
|
280
|
-
output: 0,
|
281
|
-
},
|
282
167
|
vision: true,
|
283
168
|
},
|
284
169
|
{
|
@@ -286,11 +171,6 @@ const Qwen: ModelProviderCard = {
|
|
286
171
|
description: '通义千问VL支持灵活的交互方式,包括多图、多轮问答、创作等能力的模型。',
|
287
172
|
displayName: 'Qwen VL Chat',
|
288
173
|
id: 'qwen-vl-chat-v1',
|
289
|
-
pricing: {
|
290
|
-
currency: 'CNY',
|
291
|
-
input: 0,
|
292
|
-
output: 0,
|
293
|
-
},
|
294
174
|
vision: true,
|
295
175
|
},
|
296
176
|
{
|
@@ -299,11 +179,6 @@ const Qwen: ModelProviderCard = {
|
|
299
179
|
'指令跟随、数学、解题、代码整体提升,万物识别能力提升,支持多样格式直接精准定位视觉元素,支持对长视频文件(最长10分钟)进行理解和秒级别的事件时刻定位,能理解时间先后和快慢,基于解析和定位能力支持操控OS或Mobile的Agent,关键信息抽取能力和Json格式输出能力强,此版本为72B版本,本系列能力最强的版本。',
|
300
180
|
displayName: 'Qwen2.5 VL 72B',
|
301
181
|
id: 'qwen2.5-vl-72b-instruct',
|
302
|
-
pricing: {
|
303
|
-
currency: 'CNY',
|
304
|
-
input: 16,
|
305
|
-
output: 48,
|
306
|
-
},
|
307
182
|
releasedAt: '2025-01-26',
|
308
183
|
vision: true,
|
309
184
|
},
|
@@ -313,11 +188,6 @@ const Qwen: ModelProviderCard = {
|
|
313
188
|
'DeepSeek-R1 在后训练阶段大规模使用了强化学习技术,在仅有极少标注数据的情况下,极大提升了模型推理能力。在数学、代码、自然语言推理等任务上,性能较高,能力较强。',
|
314
189
|
displayName: 'DeepSeek R1',
|
315
190
|
id: 'deepseek-r1',
|
316
|
-
pricing: {
|
317
|
-
currency: 'CNY',
|
318
|
-
input: 0,
|
319
|
-
output: 0,
|
320
|
-
},
|
321
191
|
releasedAt: '2025-01-27',
|
322
192
|
},
|
323
193
|
{
|
@@ -326,11 +196,6 @@ const Qwen: ModelProviderCard = {
|
|
326
196
|
'DeepSeek-V3 为自研 MoE 模型,671B 参数,激活 37B,在 14.8T token 上进行了预训练,在长文本、代码、数学、百科、中文能力上表现优秀。',
|
327
197
|
displayName: 'DeepSeek V3',
|
328
198
|
id: 'deepseek-v3',
|
329
|
-
pricing: {
|
330
|
-
currency: 'CNY',
|
331
|
-
input: 0,
|
332
|
-
output: 0,
|
333
|
-
},
|
334
199
|
releasedAt: '2025-01-27',
|
335
200
|
},
|
336
201
|
{
|
@@ -339,11 +204,6 @@ const Qwen: ModelProviderCard = {
|
|
339
204
|
'DeepSeek-R1-Distill-Qwen-1.5B 是一个基于 Qwen2.5-Math-1.5B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
340
205
|
displayName: 'DeepSeek R1 Distill Qwen 1.5B',
|
341
206
|
id: 'deepseek-r1-distill-qwen-1.5b',
|
342
|
-
pricing: {
|
343
|
-
currency: 'CNY',
|
344
|
-
input: 0,
|
345
|
-
output: 0,
|
346
|
-
},
|
347
207
|
releasedAt: '2025-02-05',
|
348
208
|
},
|
349
209
|
{
|
@@ -352,11 +212,6 @@ const Qwen: ModelProviderCard = {
|
|
352
212
|
'DeepSeek-R1-Distill-Qwen-7B 是一个基于 Qwen2.5-Math-7B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
353
213
|
displayName: 'DeepSeek R1 Distill Qwen 7B',
|
354
214
|
id: 'deepseek-r1-distill-qwen-7b',
|
355
|
-
pricing: {
|
356
|
-
currency: 'CNY',
|
357
|
-
input: 0,
|
358
|
-
output: 0,
|
359
|
-
},
|
360
215
|
releasedAt: '2025-02-05',
|
361
216
|
},
|
362
217
|
{
|
@@ -365,11 +220,6 @@ const Qwen: ModelProviderCard = {
|
|
365
220
|
'DeepSeek-R1-Distill-Qwen-14B 是一个基于 Qwen2.5-14B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
366
221
|
displayName: 'DeepSeek R1 Distill Qwen 14B',
|
367
222
|
id: 'deepseek-r1-distill-qwen-14b',
|
368
|
-
pricing: {
|
369
|
-
currency: 'CNY',
|
370
|
-
input: 0,
|
371
|
-
output: 0,
|
372
|
-
},
|
373
223
|
releasedAt: '2025-02-05',
|
374
224
|
},
|
375
225
|
{
|
@@ -378,11 +228,6 @@ const Qwen: ModelProviderCard = {
|
|
378
228
|
'DeepSeek-R1-Distill-Qwen-32B 是一个基于 Qwen2.5-32B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
379
229
|
displayName: 'DeepSeek R1 Distill Qwen 32B',
|
380
230
|
id: 'deepseek-r1-distill-qwen-32b',
|
381
|
-
pricing: {
|
382
|
-
currency: 'CNY',
|
383
|
-
input: 0,
|
384
|
-
output: 0,
|
385
|
-
},
|
386
231
|
releasedAt: '2025-02-05',
|
387
232
|
},
|
388
233
|
{
|
@@ -391,11 +236,6 @@ const Qwen: ModelProviderCard = {
|
|
391
236
|
'DeepSeek-R1-Distill-Llama-8B 是一个基于 Llama-3.1-8B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
392
237
|
displayName: 'DeepSeek R1 Distill Llama 8B',
|
393
238
|
id: 'deepseek-r1-distill-llama-8b',
|
394
|
-
pricing: {
|
395
|
-
currency: 'CNY',
|
396
|
-
input: 0,
|
397
|
-
output: 0,
|
398
|
-
},
|
399
239
|
releasedAt: '2025-02-05',
|
400
240
|
},
|
401
241
|
{
|
@@ -404,11 +244,6 @@ const Qwen: ModelProviderCard = {
|
|
404
244
|
'DeepSeek-R1-Distill-Llama-70B 是一个基于 Llama-3.3-70B-Instruct 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
|
405
245
|
displayName: 'DeepSeek R1 Distill Llama 70B',
|
406
246
|
id: 'deepseek-r1-distill-llama-70b',
|
407
|
-
pricing: {
|
408
|
-
currency: 'CNY',
|
409
|
-
input: 0,
|
410
|
-
output: 0,
|
411
|
-
},
|
412
247
|
releasedAt: '2025-02-05',
|
413
248
|
},
|
414
249
|
],
|
@@ -12,11 +12,6 @@ const SenseNova: ModelProviderCard = {
|
|
12
12
|
enabled: true,
|
13
13
|
functionCall: true,
|
14
14
|
id: 'SenseChat-5',
|
15
|
-
pricing: {
|
16
|
-
currency: 'CNY',
|
17
|
-
input: 40,
|
18
|
-
output: 100,
|
19
|
-
},
|
20
15
|
},
|
21
16
|
/*
|
22
17
|
// Not compatible with local mode (Not support Base64 Image)
|
@@ -25,11 +20,6 @@ const SenseNova: ModelProviderCard = {
|
|
25
20
|
displayName: 'SenseChat 5.5 Vision',
|
26
21
|
enabled: true,
|
27
22
|
id: 'SenseChat-Vision',
|
28
|
-
pricing: {
|
29
|
-
currency: 'CNY',
|
30
|
-
input: 100,
|
31
|
-
output: 100,
|
32
|
-
},
|
33
23
|
tokens: 16_384,
|
34
24
|
vision: true,
|
35
25
|
},
|
@@ -40,11 +30,6 @@ const SenseNova: ModelProviderCard = {
|
|
40
30
|
displayName: 'SenseChat 5.0 Turbo',
|
41
31
|
enabled: true,
|
42
32
|
id: 'SenseChat-Turbo',
|
43
|
-
pricing: {
|
44
|
-
currency: 'CNY',
|
45
|
-
input: 2,
|
46
|
-
output: 5,
|
47
|
-
},
|
48
33
|
},
|
49
34
|
{
|
50
35
|
contextWindowTokens: 32_768,
|
@@ -52,11 +37,6 @@ const SenseNova: ModelProviderCard = {
|
|
52
37
|
'32K上下文长度,在粤语的对话理解上超越了GPT-4,在知识、推理、数学及代码编写等多个领域均能与GPT-4 Turbo相媲美',
|
53
38
|
displayName: 'SenseChat 5.0 Cantonese',
|
54
39
|
id: 'SenseChat-5-Cantonese',
|
55
|
-
pricing: {
|
56
|
-
currency: 'CNY',
|
57
|
-
input: 27,
|
58
|
-
output: 27,
|
59
|
-
},
|
60
40
|
},
|
61
41
|
{
|
62
42
|
contextWindowTokens: 131_072,
|
@@ -64,11 +44,6 @@ const SenseNova: ModelProviderCard = {
|
|
64
44
|
displayName: 'SenseChat 4.0 128K',
|
65
45
|
enabled: true,
|
66
46
|
id: 'SenseChat-128K',
|
67
|
-
pricing: {
|
68
|
-
currency: 'CNY',
|
69
|
-
input: 60,
|
70
|
-
output: 60,
|
71
|
-
},
|
72
47
|
},
|
73
48
|
{
|
74
49
|
contextWindowTokens: 32_768,
|
@@ -76,11 +51,6 @@ const SenseNova: ModelProviderCard = {
|
|
76
51
|
displayName: 'SenseChat 4.0 32K',
|
77
52
|
enabled: true,
|
78
53
|
id: 'SenseChat-32K',
|
79
|
-
pricing: {
|
80
|
-
currency: 'CNY',
|
81
|
-
input: 36,
|
82
|
-
output: 36,
|
83
|
-
},
|
84
54
|
},
|
85
55
|
{
|
86
56
|
contextWindowTokens: 4096,
|
@@ -88,33 +58,18 @@ const SenseNova: ModelProviderCard = {
|
|
88
58
|
displayName: 'SenseChat 4.0 4K',
|
89
59
|
enabled: true,
|
90
60
|
id: 'SenseChat',
|
91
|
-
pricing: {
|
92
|
-
currency: 'CNY',
|
93
|
-
input: 12,
|
94
|
-
output: 12,
|
95
|
-
},
|
96
61
|
},
|
97
62
|
{
|
98
63
|
contextWindowTokens: 8192,
|
99
64
|
description: '标准版模型,8K上下文长度,高响应速度',
|
100
65
|
displayName: 'SenseChat Character',
|
101
66
|
id: 'SenseChat-Character',
|
102
|
-
pricing: {
|
103
|
-
currency: 'CNY',
|
104
|
-
input: 12,
|
105
|
-
output: 12,
|
106
|
-
},
|
107
67
|
},
|
108
68
|
{
|
109
69
|
contextWindowTokens: 32_768,
|
110
70
|
description: '高级版模型,32K上下文长度,能力全面提升,支持中/英文对话',
|
111
71
|
displayName: 'SenseChat Character Pro',
|
112
72
|
id: 'SenseChat-Character-Pro',
|
113
|
-
pricing: {
|
114
|
-
currency: 'CNY',
|
115
|
-
input: 15,
|
116
|
-
output: 15,
|
117
|
-
},
|
118
73
|
},
|
119
74
|
],
|
120
75
|
checkModel: 'SenseChat-Turbo',
|