@lobehub/lobehub 2.0.0-next.15 → 2.0.0-next.17

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.
Files changed (111) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +2 -45
  3. package/README.zh-CN.md +2 -45
  4. package/changelog/v1.json +18 -0
  5. package/docs/self-hosting/advanced/feature-flags.mdx +0 -1
  6. package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +0 -1
  7. package/e2e/src/features/discover/smoke.feature +34 -1
  8. package/e2e/src/steps/discover/smoke.steps.ts +116 -4
  9. package/package.json +1 -1
  10. package/packages/model-runtime/src/utils/googleErrorParser.test.ts +125 -0
  11. package/packages/model-runtime/src/utils/googleErrorParser.ts +103 -77
  12. package/packages/types/src/serverConfig.ts +2 -6
  13. package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +1 -8
  14. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +3 -6
  15. package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +1 -0
  16. package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +1 -1
  17. package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +1 -0
  18. package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +1 -0
  19. package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +1 -0
  20. package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
  21. package/src/app/[variants]/(main)/labs/components/LabCard.tsx +3 -1
  22. package/src/app/[variants]/(main)/settings/provider/detail/azure/index.tsx +5 -7
  23. package/src/components/InvalidAPIKey/APIKeyForm/Bedrock.tsx +8 -13
  24. package/src/config/featureFlags/schema.test.ts +0 -2
  25. package/src/config/featureFlags/schema.ts +0 -6
  26. package/src/config/modelProviders/ai21.ts +1 -16
  27. package/src/config/modelProviders/ai302.ts +1 -128
  28. package/src/config/modelProviders/ai360.ts +1 -32
  29. package/src/config/modelProviders/anthropic.ts +1 -71
  30. package/src/config/modelProviders/azure.ts +1 -51
  31. package/src/config/modelProviders/baichuan.ts +1 -57
  32. package/src/config/modelProviders/bedrock.ts +1 -276
  33. package/src/config/modelProviders/cloudflare.ts +1 -64
  34. package/src/config/modelProviders/deepseek.ts +1 -19
  35. package/src/config/modelProviders/fireworksai.ts +1 -174
  36. package/src/config/modelProviders/giteeai.ts +1 -135
  37. package/src/config/modelProviders/github.ts +1 -254
  38. package/src/config/modelProviders/google.ts +1 -130
  39. package/src/config/modelProviders/groq.ts +1 -119
  40. package/src/config/modelProviders/higress.ts +1 -1713
  41. package/src/config/modelProviders/huggingface.ts +1 -54
  42. package/src/config/modelProviders/hunyuan.ts +1 -83
  43. package/src/config/modelProviders/infiniai.ts +1 -74
  44. package/src/config/modelProviders/internlm.ts +1 -20
  45. package/src/config/modelProviders/mistral.ts +1 -95
  46. package/src/config/modelProviders/modelscope.ts +1 -27
  47. package/src/config/modelProviders/moonshot.ts +1 -29
  48. package/src/config/modelProviders/novita.ts +1 -105
  49. package/src/config/modelProviders/ollama.ts +1 -325
  50. package/src/config/modelProviders/openai.ts +1 -242
  51. package/src/config/modelProviders/openrouter.ts +1 -240
  52. package/src/config/modelProviders/perplexity.ts +1 -45
  53. package/src/config/modelProviders/ppio.ts +1 -152
  54. package/src/config/modelProviders/qiniu.ts +1 -18
  55. package/src/config/modelProviders/qwen.ts +1 -245
  56. package/src/config/modelProviders/search1api.ts +1 -34
  57. package/src/config/modelProviders/sensenova.ts +1 -69
  58. package/src/config/modelProviders/siliconcloud.ts +1 -417
  59. package/src/config/modelProviders/spark.ts +1 -59
  60. package/src/config/modelProviders/stepfun.ts +1 -98
  61. package/src/config/modelProviders/taichu.ts +1 -18
  62. package/src/config/modelProviders/togetherai.ts +1 -274
  63. package/src/config/modelProviders/upstage.ts +1 -28
  64. package/src/config/modelProviders/wenxin.ts +1 -140
  65. package/src/config/modelProviders/xai.ts +1 -38
  66. package/src/config/modelProviders/zeroone.ts +1 -81
  67. package/src/config/modelProviders/zhipu.ts +1 -108
  68. package/src/helpers/isCanUseFC.ts +0 -8
  69. package/src/hooks/useEnabledChatModels.ts +0 -8
  70. package/src/hooks/useModelContextWindowTokens.ts +0 -8
  71. package/src/hooks/useModelHasContextWindowToken.ts +1 -10
  72. package/src/hooks/useModelSupportFiles.ts +1 -11
  73. package/src/hooks/useModelSupportReasoning.ts +1 -11
  74. package/src/hooks/useModelSupportToolUse.ts +1 -11
  75. package/src/hooks/useModelSupportVision.ts +1 -11
  76. package/src/layout/AuthProvider/Clerk/index.tsx +2 -16
  77. package/src/server/globalConfig/index.ts +0 -23
  78. package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +175 -12
  79. package/src/server/routers/lambda/config/index.test.ts +36 -28
  80. package/src/services/chat/chat.test.ts +12 -0
  81. package/src/services/chat/helper.ts +7 -31
  82. package/src/services/models.ts +2 -11
  83. package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +41 -14
  84. package/src/store/global/store.ts +1 -7
  85. package/src/store/user/initialState.ts +1 -7
  86. package/src/store/user/selectors.ts +1 -5
  87. package/src/store/user/slices/common/action.ts +5 -4
  88. package/src/store/user/slices/settings/selectors/index.ts +1 -0
  89. package/src/store/user/slices/settings/selectors/keyVaults.ts +21 -0
  90. package/src/store/user/store.ts +0 -3
  91. package/src/tools/web-browsing/Render/Search/ConfigForm/Form.tsx +1 -1
  92. package/packages/utils/src/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -104
  93. package/packages/utils/src/_deprecated/parseModels.test.ts +0 -287
  94. package/packages/utils/src/_deprecated/parseModels.ts +0 -165
  95. package/src/hooks/_header.ts +0 -23
  96. package/src/server/globalConfig/_deprecated.test.ts +0 -92
  97. package/src/server/globalConfig/_deprecated.ts +0 -41
  98. package/src/store/global/actions/clientDb.ts +0 -67
  99. package/src/store/user/slices/modelList/__snapshots__/action.test.ts.snap +0 -12
  100. package/src/store/user/slices/modelList/action.test.ts +0 -359
  101. package/src/store/user/slices/modelList/action.ts +0 -223
  102. package/src/store/user/slices/modelList/initialState.ts +0 -15
  103. package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +0 -204
  104. package/src/store/user/slices/modelList/reducers/customModelCard.ts +0 -64
  105. package/src/store/user/slices/modelList/selectors/index.ts +0 -3
  106. package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +0 -201
  107. package/src/store/user/slices/modelList/selectors/keyVaults.ts +0 -50
  108. package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +0 -219
  109. package/src/store/user/slices/modelList/selectors/modelConfig.ts +0 -95
  110. package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +0 -138
  111. package/src/store/user/slices/modelList/selectors/modelProvider.ts +0 -170
@@ -2,251 +2,7 @@ import { ModelProviderCard } from '@/types/llm';
2
2
 
3
3
  // ref: https://help.aliyun.com/zh/model-studio/getting-started/models
4
4
  const Qwen: ModelProviderCard = {
5
- chatModels: [
6
- {
7
- contextWindowTokens: 1_000_000,
8
- description: '通义千问超大规模语言模型,支持中文、英文等不同语言输入。',
9
- displayName: 'Qwen Turbo',
10
- enabled: true,
11
- functionCall: true,
12
- id: 'qwen-turbo-latest',
13
- },
14
- {
15
- contextWindowTokens: 131_072,
16
- description: '通义千问超大规模语言模型增强版,支持中文、英文等不同语言输入。',
17
- displayName: 'Qwen Plus',
18
- enabled: true,
19
- functionCall: true,
20
- id: 'qwen-plus-latest',
21
- },
22
- {
23
- contextWindowTokens: 32_768,
24
- description:
25
- '通义千问千亿级别超大规模语言模型,支持中文、英文等不同语言输入,当前通义千问2.5产品版本背后的API模型。',
26
- displayName: 'Qwen Max',
27
- enabled: true,
28
- functionCall: true,
29
- id: 'qwen-max-latest',
30
- },
31
- {
32
- contextWindowTokens: 1_000_000,
33
- description:
34
- '通义千问超大规模语言模型,支持长文本上下文,以及基于长文档、多文档等多个场景的对话功能。',
35
- displayName: 'Qwen Long',
36
- id: 'qwen-long',
37
- },
38
- {
39
- contextWindowTokens: 32_000,
40
- description:
41
- '通义千问大规模视觉语言模型增强版。大幅提升细节识别能力和文字识别能力,支持超百万像素分辨率和任意长宽比规格的图像。',
42
- displayName: 'Qwen VL Plus',
43
- enabled: true,
44
- id: 'qwen-vl-plus-latest',
45
- vision: true,
46
- },
47
- {
48
- contextWindowTokens: 32_768,
49
- description:
50
- '通义千问超大规模视觉语言模型。相比增强版,再次提升视觉推理能力和指令遵循能力,提供更高的视觉感知和认知水平。',
51
- displayName: 'Qwen VL Max',
52
- enabled: true,
53
- id: 'qwen-vl-max-latest',
54
- vision: true,
55
- },
56
- {
57
- contextWindowTokens: 34_096,
58
- description:
59
- '通义千问OCR是文字提取专有模型,专注于文档、表格、试题、手写体文字等类型图像的文字提取能力。它能够识别多种文字,目前支持的语言有:汉语、英语、法语、日语、韩语、德语、俄语、意大利语、越南语、阿拉伯语。',
60
- displayName: 'Qwen VL OCR',
61
- id: 'qwen-vl-ocr-latest',
62
- vision: true,
63
- },
64
- {
65
- contextWindowTokens: 4096,
66
- description: '通义千问数学模型是专门用于数学解题的语言模型。',
67
- displayName: 'Qwen Math Turbo',
68
- id: 'qwen-math-turbo-latest',
69
- },
70
- {
71
- contextWindowTokens: 4096,
72
- description: '通义千问数学模型是专门用于数学解题的语言模型。',
73
- displayName: 'Qwen Math Plus',
74
- id: 'qwen-math-plus-latest',
75
- },
76
- {
77
- contextWindowTokens: 131_072,
78
- description: '通义千问代码模型。',
79
- displayName: 'Qwen Coder Turbo',
80
- id: 'qwen-coder-turbo-latest',
81
- },
82
- {
83
- contextWindowTokens: 131_072,
84
- description: '通义千问代码模型。',
85
- displayName: 'Qwen Coder Plus',
86
- id: 'qwen-coder-plus-latest',
87
- },
88
- {
89
- contextWindowTokens: 32_768,
90
- description: 'QwQ模型是由 Qwen 团队开发的实验性研究模型,专注于增强 AI 推理能力。',
91
- displayName: 'QwQ 32B Preview',
92
- id: 'qwq-32b-preview',
93
- },
94
- {
95
- contextWindowTokens: 32_768,
96
- description:
97
- 'QVQ模型是由 Qwen 团队开发的实验性研究模型,专注于提升视觉推理能力,尤其在数学推理领域。',
98
- displayName: 'QVQ 72B Preview',
99
- id: 'qvq-72b-preview',
100
- releasedAt: '2024-12-25',
101
- vision: true,
102
- },
103
- {
104
- contextWindowTokens: 131_072,
105
- description: '通义千问2.5对外开源的7B规模的模型。',
106
- displayName: 'Qwen2.5 7B',
107
- functionCall: true,
108
- id: 'qwen2.5-7b-instruct',
109
- },
110
- {
111
- contextWindowTokens: 131_072,
112
- description: '通义千问2.5对外开源的14B规模的模型。',
113
- displayName: 'Qwen2.5 14B',
114
- functionCall: true,
115
- id: 'qwen2.5-14b-instruct',
116
- },
117
- {
118
- contextWindowTokens: 131_072,
119
- description: '通义千问2.5对外开源的32B规模的模型。',
120
- displayName: 'Qwen2.5 32B',
121
- functionCall: true,
122
- id: 'qwen2.5-32b-instruct',
123
- },
124
- {
125
- contextWindowTokens: 131_072,
126
- description: '通义千问2.5对外开源的72B规模的模型。',
127
- displayName: 'Qwen2.5 72B',
128
- functionCall: true,
129
- id: 'qwen2.5-72b-instruct',
130
- },
131
- {
132
- contextWindowTokens: 1_000_000,
133
- description: '通义千问2.5对外开源的72B规模的模型。',
134
- displayName: 'Qwen2.5 14B 1M',
135
- functionCall: true,
136
- id: 'qwen2.5-14b-instruct-1m',
137
- },
138
- {
139
- contextWindowTokens: 4096,
140
- description: 'Qwen-Math 模型具有强大的数学解题能力。',
141
- displayName: 'Qwen2.5 Math 7B',
142
- id: 'qwen2.5-math-7b-instruct',
143
- },
144
- {
145
- contextWindowTokens: 4096,
146
- description: 'Qwen-Math 模型具有强大的数学解题能力。',
147
- displayName: 'Qwen2.5 Math 72B',
148
- id: 'qwen2.5-math-72b-instruct',
149
- },
150
- {
151
- contextWindowTokens: 131_072,
152
- description: '通义千问代码模型开源版。',
153
- displayName: 'Qwen2.5 Coder 7B',
154
- id: 'qwen2.5-coder-7b-instruct',
155
- },
156
- {
157
- contextWindowTokens: 131_072,
158
- description: '通义千问代码模型开源版。',
159
- displayName: 'Qwen2.5 Coder 32B',
160
- id: 'qwen2.5-coder-32b-instruct',
161
- },
162
- {
163
- contextWindowTokens: 8000,
164
- description: '以 Qwen-7B 语言模型初始化,添加图像模型,图像输入分辨率为448的预训练模型。',
165
- displayName: 'Qwen VL',
166
- id: 'qwen-vl-v1',
167
- vision: true,
168
- },
169
- {
170
- contextWindowTokens: 8000,
171
- description: '通义千问VL支持灵活的交互方式,包括多图、多轮问答、创作等能力的模型。',
172
- displayName: 'Qwen VL Chat',
173
- id: 'qwen-vl-chat-v1',
174
- vision: true,
175
- },
176
- {
177
- contextWindowTokens: 128_000,
178
- description:
179
- '指令跟随、数学、解题、代码整体提升,万物识别能力提升,支持多样格式直接精准定位视觉元素,支持对长视频文件(最长10分钟)进行理解和秒级别的事件时刻定位,能理解时间先后和快慢,基于解析和定位能力支持操控OS或Mobile的Agent,关键信息抽取能力和Json格式输出能力强,此版本为72B版本,本系列能力最强的版本。',
180
- displayName: 'Qwen2.5 VL 72B',
181
- id: 'qwen2.5-vl-72b-instruct',
182
- releasedAt: '2025-01-26',
183
- vision: true,
184
- },
185
- {
186
- contextWindowTokens: 131_072,
187
- description:
188
- 'DeepSeek-R1 在后训练阶段大规模使用了强化学习技术,在仅有极少标注数据的情况下,极大提升了模型推理能力。在数学、代码、自然语言推理等任务上,性能较高,能力较强。',
189
- displayName: 'DeepSeek R1',
190
- id: 'deepseek-r1',
191
- releasedAt: '2025-01-27',
192
- },
193
- {
194
- contextWindowTokens: 131_072,
195
- description:
196
- 'DeepSeek-V3 为自研 MoE 模型,671B 参数,激活 37B,在 14.8T token 上进行了预训练,在长文本、代码、数学、百科、中文能力上表现优秀。',
197
- displayName: 'DeepSeek V3',
198
- id: 'deepseek-v3',
199
- releasedAt: '2025-01-27',
200
- },
201
- {
202
- contextWindowTokens: 131_072,
203
- description:
204
- 'DeepSeek-R1-Distill-Qwen-1.5B 是一个基于 Qwen2.5-Math-1.5B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
205
- displayName: 'DeepSeek R1 Distill Qwen 1.5B',
206
- id: 'deepseek-r1-distill-qwen-1.5b',
207
- releasedAt: '2025-02-05',
208
- },
209
- {
210
- contextWindowTokens: 131_072,
211
- description:
212
- 'DeepSeek-R1-Distill-Qwen-7B 是一个基于 Qwen2.5-Math-7B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
213
- displayName: 'DeepSeek R1 Distill Qwen 7B',
214
- id: 'deepseek-r1-distill-qwen-7b',
215
- releasedAt: '2025-02-05',
216
- },
217
- {
218
- contextWindowTokens: 131_072,
219
- description:
220
- 'DeepSeek-R1-Distill-Qwen-14B 是一个基于 Qwen2.5-14B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
221
- displayName: 'DeepSeek R1 Distill Qwen 14B',
222
- id: 'deepseek-r1-distill-qwen-14b',
223
- releasedAt: '2025-02-05',
224
- },
225
- {
226
- contextWindowTokens: 131_072,
227
- description:
228
- 'DeepSeek-R1-Distill-Qwen-32B 是一个基于 Qwen2.5-32B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
229
- displayName: 'DeepSeek R1 Distill Qwen 32B',
230
- id: 'deepseek-r1-distill-qwen-32b',
231
- releasedAt: '2025-02-05',
232
- },
233
- {
234
- contextWindowTokens: 131_072,
235
- description:
236
- 'DeepSeek-R1-Distill-Llama-8B 是一个基于 Llama-3.1-8B 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
237
- displayName: 'DeepSeek R1 Distill Llama 8B',
238
- id: 'deepseek-r1-distill-llama-8b',
239
- releasedAt: '2025-02-05',
240
- },
241
- {
242
- contextWindowTokens: 131_072,
243
- description:
244
- 'DeepSeek-R1-Distill-Llama-70B 是一个基于 Llama-3.3-70B-Instruct 的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。',
245
- displayName: 'DeepSeek R1 Distill Llama 70B',
246
- id: 'deepseek-r1-distill-llama-70b',
247
- releasedAt: '2025-02-05',
248
- },
249
- ],
5
+ chatModels: [],
250
6
  checkModel: 'qwen-flash',
251
7
  description:
252
8
  '通义千问是阿里云自主研发的超大规模语言模型,具有强大的自然语言理解和生成能力。它可以回答各种问题、创作文字内容、表达观点看法、撰写代码等,在多个领域发挥作用。',
@@ -1,40 +1,7 @@
1
1
  import { ModelProviderCard } from '@/types/llm';
2
2
 
3
3
  const Search1API: ModelProviderCard = {
4
- chatModels: [
5
- {
6
- contextWindowTokens: 65_536,
7
- description:
8
- 'DeepSeek R1 70B 标准版,支持实时联网搜索,适合需要最新信息的对话和文本处理任务。',
9
- displayName: 'DeepSeek R1 70B',
10
- enabled: true,
11
- id: 'deepseek-r1-70b-online',
12
- },
13
- {
14
- contextWindowTokens: 65_536,
15
- description:
16
- 'DeepSeek R1 满血版,拥有 671B 参数,支持实时联网搜索,具有更强大的理解和生成能力。',
17
- displayName: 'DeepSeek R1',
18
- enabled: true,
19
- id: 'deepseek-r1-online',
20
- },
21
- {
22
- contextWindowTokens: 131_072,
23
- description:
24
- 'DeepSeek R1 70B 快速版,支持实时联网搜索,在保持模型性能的同时提供更快的响应速度。',
25
- displayName: 'DeepSeek R1 70B Fast',
26
- enabled: true,
27
- id: 'deepseek-r1-70b-fast-online',
28
- },
29
- {
30
- contextWindowTokens: 163_840,
31
- description:
32
- 'DeepSeek R1 满血快速版,支持实时联网搜索,结合了 671B 参数的强大能力和更快的响应速度。',
33
- displayName: 'DeepSeek R1 Fast',
34
- enabled: false,
35
- id: 'deepseek-r1-fast-online',
36
- },
37
- ],
4
+ chatModels: [],
38
5
  checkModel: 'deepseek-r1-70b-fast-online',
39
6
  description:
40
7
  'Search1API 提供可根据需要自行联网的 DeepSeek 系列模型的访问,包括标准版和快速版本,支持多种参数规模的模型选择。',
@@ -3,75 +3,7 @@ import { ModelProviderCard } from '@/types/llm';
3
3
  // ref https://platform.sensenova.cn/pricing
4
4
  // ref https://platform.sensenova.cn/release?path=/release-202409.md
5
5
  const SenseNova: ModelProviderCard = {
6
- chatModels: [
7
- {
8
- contextWindowTokens: 131_072,
9
- description:
10
- '最新版本模型 (V5.5),128K上下文长度,在数学推理、英文对话、指令跟随以及长文本理解等领域能力显著提升,比肩GPT-4o',
11
- displayName: 'SenseChat 5.5',
12
- enabled: true,
13
- functionCall: true,
14
- id: 'SenseChat-5',
15
- },
16
- /*
17
- // Not compatible with local mode (Not support Base64 Image)
18
- {
19
- description: '最新版本模型 (V5.5),16K上下文长度,支持多图的输入,全面实现模型基础能力优化,在对象属性识别、空间关系、动作事件识别、场景理解、情感识别、逻辑常识推理和文本理解生成上都实现了较大提升。',
20
- displayName: 'SenseChat 5.5 Vision',
21
- enabled: true,
22
- id: 'SenseChat-Vision',
23
- tokens: 16_384,
24
- vision: true,
25
- },
26
- */
27
- {
28
- contextWindowTokens: 32_768,
29
- description: '适用于快速问答、模型微调场景',
30
- displayName: 'SenseChat 5.0 Turbo',
31
- enabled: true,
32
- id: 'SenseChat-Turbo',
33
- },
34
- {
35
- contextWindowTokens: 32_768,
36
- description:
37
- '32K上下文长度,在粤语的对话理解上超越了GPT-4,在知识、推理、数学及代码编写等多个领域均能与GPT-4 Turbo相媲美',
38
- displayName: 'SenseChat 5.0 Cantonese',
39
- id: 'SenseChat-5-Cantonese',
40
- },
41
- {
42
- contextWindowTokens: 131_072,
43
- description: '基础版本模型 (V4),128K上下文长度,在长文本理解及生成等任务中表现出色',
44
- displayName: 'SenseChat 4.0 128K',
45
- enabled: true,
46
- id: 'SenseChat-128K',
47
- },
48
- {
49
- contextWindowTokens: 32_768,
50
- description: '基础版本模型 (V4),32K上下文长度,灵活应用于各类场景',
51
- displayName: 'SenseChat 4.0 32K',
52
- enabled: true,
53
- id: 'SenseChat-32K',
54
- },
55
- {
56
- contextWindowTokens: 4096,
57
- description: '基础版本模型 (V4),4K上下文长度,通用能力强大',
58
- displayName: 'SenseChat 4.0 4K',
59
- enabled: true,
60
- id: 'SenseChat',
61
- },
62
- {
63
- contextWindowTokens: 8192,
64
- description: '标准版模型,8K上下文长度,高响应速度',
65
- displayName: 'SenseChat Character',
66
- id: 'SenseChat-Character',
67
- },
68
- {
69
- contextWindowTokens: 32_768,
70
- description: '高级版模型,32K上下文长度,能力全面提升,支持中/英文对话',
71
- displayName: 'SenseChat Character Pro',
72
- id: 'SenseChat-Character-Pro',
73
- },
74
- ],
6
+ chatModels: [],
75
7
  checkModel: 'SenseChat-Turbo',
76
8
  description: '商汤日日新,依托商汤大装置的强大的基础支撑,提供高效易用的全栈大模型服务。',
77
9
  disableBrowserRequest: true,