@lobehub/chat 1.23.0 → 1.24.0
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/CHANGELOG.md +51 -0
- package/Dockerfile +19 -15
- package/Dockerfile.database +20 -16
- package/locales/ar/modelProvider.json +16 -0
- package/locales/ar/models.json +27 -0
- package/locales/ar/providers.json +1 -0
- package/locales/bg-BG/modelProvider.json +16 -0
- package/locales/bg-BG/models.json +27 -0
- package/locales/bg-BG/providers.json +1 -0
- package/locales/de-DE/modelProvider.json +16 -0
- package/locales/de-DE/models.json +27 -0
- package/locales/de-DE/providers.json +1 -0
- package/locales/en-US/modelProvider.json +16 -0
- package/locales/en-US/models.json +27 -0
- package/locales/en-US/providers.json +1 -0
- package/locales/es-ES/modelProvider.json +16 -0
- package/locales/es-ES/models.json +27 -0
- package/locales/es-ES/providers.json +1 -0
- package/locales/fr-FR/modelProvider.json +16 -0
- package/locales/fr-FR/models.json +27 -0
- package/locales/fr-FR/providers.json +1 -0
- package/locales/it-IT/modelProvider.json +16 -0
- package/locales/it-IT/models.json +27 -0
- package/locales/it-IT/providers.json +1 -0
- package/locales/ja-JP/modelProvider.json +16 -0
- package/locales/ja-JP/models.json +27 -0
- package/locales/ja-JP/providers.json +1 -0
- package/locales/ko-KR/modelProvider.json +16 -0
- package/locales/ko-KR/models.json +27 -0
- package/locales/ko-KR/providers.json +1 -0
- package/locales/nl-NL/modelProvider.json +16 -0
- package/locales/nl-NL/models.json +27 -0
- package/locales/nl-NL/providers.json +1 -0
- package/locales/pl-PL/modelProvider.json +16 -0
- package/locales/pl-PL/models.json +27 -0
- package/locales/pl-PL/providers.json +1 -0
- package/locales/pt-BR/modelProvider.json +16 -0
- package/locales/pt-BR/models.json +27 -0
- package/locales/pt-BR/providers.json +1 -0
- package/locales/ru-RU/modelProvider.json +16 -0
- package/locales/ru-RU/models.json +27 -0
- package/locales/ru-RU/providers.json +1 -0
- package/locales/tr-TR/modelProvider.json +16 -0
- package/locales/tr-TR/models.json +27 -0
- package/locales/tr-TR/providers.json +1 -0
- package/locales/vi-VN/modelProvider.json +16 -0
- package/locales/vi-VN/models.json +27 -0
- package/locales/vi-VN/providers.json +1 -0
- package/locales/zh-CN/modelProvider.json +16 -0
- package/locales/zh-CN/models.json +27 -0
- package/locales/zh-CN/providers.json +1 -0
- package/locales/zh-TW/modelProvider.json +16 -0
- package/locales/zh-TW/models.json +27 -0
- package/locales/zh-TW/providers.json +1 -0
- package/package.json +3 -3
- package/src/app/(main)/settings/llm/ProviderList/SenseNova/index.tsx +44 -0
- package/src/app/(main)/settings/llm/ProviderList/providers.tsx +4 -0
- package/src/config/llm.ts +38 -0
- package/src/config/modelProviders/index.ts +4 -0
- package/src/config/modelProviders/sensenova.ts +124 -0
- package/src/config/modelProviders/spark.ts +6 -6
- package/src/const/auth.ts +3 -0
- package/src/const/settings/llm.ts +5 -0
- package/src/features/Conversation/Error/APIKeyForm/SenseNova.tsx +49 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +3 -0
- package/src/libs/agent-runtime/AgentRuntime.ts +7 -0
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/sensenova/authToken.test.ts +18 -0
- package/src/libs/agent-runtime/sensenova/authToken.ts +27 -0
- package/src/libs/agent-runtime/sensenova/index.test.ts +321 -0
- package/src/libs/agent-runtime/sensenova/index.ts +98 -0
- package/src/libs/agent-runtime/types/type.ts +1 -0
- package/src/locales/default/modelProvider.ts +17 -0
- package/src/server/globalConfig/index.ts +158 -16
- package/src/server/modules/AgentRuntime/index.ts +10 -0
- package/src/services/_auth.ts +14 -0
- package/src/store/user/slices/modelList/selectors/keyVaults.ts +2 -0
- package/src/store/user/slices/modelList/selectors/modelConfig.ts +2 -0
- package/src/types/user/settings/keyVaults.ts +6 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,57 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
## [Version 1.24.0](https://github.com/lobehub/lobe-chat/compare/v1.23.1...v1.24.0)
|
6
|
+
|
7
|
+
<sup>Released on **2024-10-25**</sup>
|
8
|
+
|
9
|
+
#### ✨ Features
|
10
|
+
|
11
|
+
- **misc**: Add SenseNova (商汤) model provider.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's improved
|
19
|
+
|
20
|
+
- **misc**: Add SenseNova (商汤) model provider, closes [#4162](https://github.com/lobehub/lobe-chat/issues/4162) ([7a4e0b3](https://github.com/lobehub/lobe-chat/commit/7a4e0b3))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
### [Version 1.23.1](https://github.com/lobehub/lobe-chat/compare/v1.23.0...v1.23.1)
|
31
|
+
|
32
|
+
<sup>Released on **2024-10-25**</sup>
|
33
|
+
|
34
|
+
#### 💄 Styles
|
35
|
+
|
36
|
+
- **misc**: Add `*_MODEL_LIST` env to all models, update Spark model id & display name.
|
37
|
+
|
38
|
+
<br/>
|
39
|
+
|
40
|
+
<details>
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
42
|
+
|
43
|
+
#### Styles
|
44
|
+
|
45
|
+
- **misc**: Add `*_MODEL_LIST` env to all models, closes [#4481](https://github.com/lobehub/lobe-chat/issues/4481) ([a969b9c](https://github.com/lobehub/lobe-chat/commit/a969b9c))
|
46
|
+
- **misc**: Update Spark model id & display name, closes [#4482](https://github.com/lobehub/lobe-chat/issues/4482) ([852dd47](https://github.com/lobehub/lobe-chat/commit/852dd47))
|
47
|
+
|
48
|
+
</details>
|
49
|
+
|
50
|
+
<div align="right">
|
51
|
+
|
52
|
+
[](#readme-top)
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
5
56
|
## [Version 1.23.0](https://github.com/lobehub/lobe-chat/compare/v1.22.27...v1.23.0)
|
6
57
|
|
7
58
|
<sup>Released on **2024-10-25**</sup>
|
package/Dockerfile
CHANGED
@@ -141,35 +141,37 @@ ENV ACCESS_CODE="" \
|
|
141
141
|
# Model Variables
|
142
142
|
ENV \
|
143
143
|
# AI21
|
144
|
-
AI21_API_KEY="" \
|
144
|
+
AI21_API_KEY="" AI21_MODEL_LIST="" \
|
145
145
|
# Ai360
|
146
|
-
AI360_API_KEY="" \
|
146
|
+
AI360_API_KEY="" AI360_MODEL_LIST="" \
|
147
147
|
# Anthropic
|
148
|
-
ANTHROPIC_API_KEY="" ANTHROPIC_PROXY_URL="" \
|
148
|
+
ANTHROPIC_API_KEY="" ANTHROPIC_MODEL_LIST="" ANTHROPIC_PROXY_URL="" \
|
149
149
|
# Amazon Bedrock
|
150
150
|
AWS_ACCESS_KEY_ID="" AWS_SECRET_ACCESS_KEY="" AWS_REGION="" AWS_BEDROCK_MODEL_LIST="" \
|
151
151
|
# Azure OpenAI
|
152
152
|
AZURE_API_KEY="" AZURE_API_VERSION="" AZURE_ENDPOINT="" AZURE_MODEL_LIST="" \
|
153
153
|
# Baichuan
|
154
|
-
BAICHUAN_API_KEY="" \
|
154
|
+
BAICHUAN_API_KEY="" BAICHUAN_MODEL_LIST="" \
|
155
155
|
# DeepSeek
|
156
|
-
DEEPSEEK_API_KEY="" \
|
156
|
+
DEEPSEEK_API_KEY="" DEEPSEEK_MODEL_LIST="" \
|
157
157
|
# Fireworks AI
|
158
158
|
FIREWORKSAI_API_KEY="" FIREWORKSAI_MODEL_LIST="" \
|
159
159
|
# GitHub
|
160
160
|
GITHUB_TOKEN="" GITHUB_MODEL_LIST="" \
|
161
161
|
# Google
|
162
|
-
GOOGLE_API_KEY="" GOOGLE_PROXY_URL="" \
|
162
|
+
GOOGLE_API_KEY="" GOOGLE_MODEL_LIST="" GOOGLE_PROXY_URL="" \
|
163
163
|
# Groq
|
164
164
|
GROQ_API_KEY="" GROQ_MODEL_LIST="" GROQ_PROXY_URL="" \
|
165
|
+
# HuggingFace
|
166
|
+
HUGGINGFACE_API_KEY="" HUGGINGFACE_MODEL_LIST="" HUGGINGFACE_PROXY_URL="" \
|
165
167
|
# Hunyuan
|
166
168
|
HUNYUAN_API_KEY="" HUNYUAN_MODEL_LIST="" \
|
167
169
|
# Minimax
|
168
|
-
MINIMAX_API_KEY="" \
|
170
|
+
MINIMAX_API_KEY="" MINIMAX_MODEL_LIST="" \
|
169
171
|
# Mistral
|
170
|
-
MISTRAL_API_KEY="" \
|
172
|
+
MISTRAL_API_KEY="" MISTRAL_MODEL_LIST="" \
|
171
173
|
# Moonshot
|
172
|
-
MOONSHOT_API_KEY="" MOONSHOT_PROXY_URL="" \
|
174
|
+
MOONSHOT_API_KEY="" MOONSHOT_MODEL_LIST="" MOONSHOT_PROXY_URL="" \
|
173
175
|
# Novita
|
174
176
|
NOVITA_API_KEY="" NOVITA_MODEL_LIST="" \
|
175
177
|
# Ollama
|
@@ -179,23 +181,25 @@ ENV \
|
|
179
181
|
# OpenRouter
|
180
182
|
OPENROUTER_API_KEY="" OPENROUTER_MODEL_LIST="" \
|
181
183
|
# Perplexity
|
182
|
-
PERPLEXITY_API_KEY="" PERPLEXITY_PROXY_URL="" \
|
184
|
+
PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
|
183
185
|
# Qwen
|
184
186
|
QWEN_API_KEY="" QWEN_MODEL_LIST="" \
|
187
|
+
# SenseNova
|
188
|
+
SENSENOVA_ACCESS_KEY_ID="" SENSENOVA_ACCESS_KEY_SECRET="" SENSENOVA_MODEL_LIST="" \
|
185
189
|
# SiliconCloud
|
186
190
|
SILICONCLOUD_API_KEY="" SILICONCLOUD_MODEL_LIST="" SILICONCLOUD_PROXY_URL="" \
|
187
191
|
# Spark
|
188
|
-
SPARK_API_KEY="" \
|
192
|
+
SPARK_API_KEY="" SPARK_MODEL_LIST="" \
|
189
193
|
# Stepfun
|
190
|
-
STEPFUN_API_KEY="" \
|
194
|
+
STEPFUN_API_KEY="" STEPFUN_MODEL_LIST="" \
|
191
195
|
# Taichu
|
192
|
-
TAICHU_API_KEY="" \
|
196
|
+
TAICHU_API_KEY="" TAICHU_MODEL_LIST="" \
|
193
197
|
# TogetherAI
|
194
198
|
TOGETHERAI_API_KEY="" TOGETHERAI_MODEL_LIST="" \
|
195
199
|
# Upstage
|
196
|
-
UPSTAGE_API_KEY="" \
|
200
|
+
UPSTAGE_API_KEY="" UPSTAGE_MODEL_LIST="" \
|
197
201
|
# Wenxin
|
198
|
-
WENXIN_ACCESS_KEY="" WENXIN_SECRET_KEY="" \
|
202
|
+
WENXIN_ACCESS_KEY="" WENXIN_SECRET_KEY="" WENXIN_MODEL_LIST="" \
|
199
203
|
# 01.AI
|
200
204
|
ZEROONE_API_KEY="" ZEROONE_MODEL_LIST="" \
|
201
205
|
# Zhipu
|
package/Dockerfile.database
CHANGED
@@ -176,35 +176,37 @@ ENV NEXT_PUBLIC_S3_DOMAIN="" \
|
|
176
176
|
# Model Variables
|
177
177
|
ENV \
|
178
178
|
# AI21
|
179
|
-
AI21_API_KEY="" \
|
179
|
+
AI21_API_KEY="" AI21_MODEL_LIST="" \
|
180
180
|
# Ai360
|
181
|
-
AI360_API_KEY="" \
|
181
|
+
AI360_API_KEY="" AI360_MODEL_LIST="" \
|
182
182
|
# Anthropic
|
183
|
-
ANTHROPIC_API_KEY="" ANTHROPIC_PROXY_URL="" \
|
183
|
+
ANTHROPIC_API_KEY="" ANTHROPIC_MODEL_LIST="" ANTHROPIC_PROXY_URL="" \
|
184
184
|
# Amazon Bedrock
|
185
185
|
AWS_ACCESS_KEY_ID="" AWS_SECRET_ACCESS_KEY="" AWS_REGION="" AWS_BEDROCK_MODEL_LIST="" \
|
186
186
|
# Azure OpenAI
|
187
187
|
AZURE_API_KEY="" AZURE_API_VERSION="" AZURE_ENDPOINT="" AZURE_MODEL_LIST="" \
|
188
188
|
# Baichuan
|
189
|
-
BAICHUAN_API_KEY="" \
|
189
|
+
BAICHUAN_API_KEY="" BAICHUAN_MODEL_LIST="" \
|
190
190
|
# DeepSeek
|
191
|
-
DEEPSEEK_API_KEY="" \
|
191
|
+
DEEPSEEK_API_KEY="" DEEPSEEK_MODEL_LIST="" \
|
192
192
|
# Fireworks AI
|
193
193
|
FIREWORKSAI_API_KEY="" FIREWORKSAI_MODEL_LIST="" \
|
194
194
|
# GitHub
|
195
195
|
GITHUB_TOKEN="" GITHUB_MODEL_LIST="" \
|
196
196
|
# Google
|
197
|
-
GOOGLE_API_KEY="" GOOGLE_PROXY_URL="" \
|
197
|
+
GOOGLE_API_KEY="" GOOGLE_MODEL_LIST="" GOOGLE_PROXY_URL="" \
|
198
198
|
# Groq
|
199
199
|
GROQ_API_KEY="" GROQ_MODEL_LIST="" GROQ_PROXY_URL="" \
|
200
|
+
# HuggingFace
|
201
|
+
HUGGINGFACE_API_KEY="" HUGGINGFACE_MODEL_LIST="" HUGGINGFACE_PROXY_URL="" \
|
200
202
|
# Hunyuan
|
201
203
|
HUNYUAN_API_KEY="" HUNYUAN_MODEL_LIST="" \
|
202
204
|
# Minimax
|
203
|
-
MINIMAX_API_KEY="" \
|
205
|
+
MINIMAX_API_KEY="" MINIMAX_MODEL_LIST="" \
|
204
206
|
# Mistral
|
205
|
-
MISTRAL_API_KEY="" \
|
207
|
+
MISTRAL_API_KEY="" MISTRAL_MODEL_LIST="" \
|
206
208
|
# Moonshot
|
207
|
-
MOONSHOT_API_KEY="" MOONSHOT_PROXY_URL="" \
|
209
|
+
MOONSHOT_API_KEY="" MOONSHOT_MODEL_LIST="" MOONSHOT_PROXY_URL="" \
|
208
210
|
# Novita
|
209
211
|
NOVITA_API_KEY="" NOVITA_MODEL_LIST="" \
|
210
212
|
# Ollama
|
@@ -214,27 +216,29 @@ ENV \
|
|
214
216
|
# OpenRouter
|
215
217
|
OPENROUTER_API_KEY="" OPENROUTER_MODEL_LIST="" \
|
216
218
|
# Perplexity
|
217
|
-
PERPLEXITY_API_KEY="" PERPLEXITY_PROXY_URL="" \
|
219
|
+
PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
|
218
220
|
# Qwen
|
219
221
|
QWEN_API_KEY="" QWEN_MODEL_LIST="" \
|
222
|
+
# SenseNova
|
223
|
+
SENSENOVA_ACCESS_KEY_ID="" SENSENOVA_ACCESS_KEY_SECRET="" SENSENOVA_MODEL_LIST="" \
|
220
224
|
# SiliconCloud
|
221
225
|
SILICONCLOUD_API_KEY="" SILICONCLOUD_MODEL_LIST="" SILICONCLOUD_PROXY_URL="" \
|
222
226
|
# Spark
|
223
|
-
SPARK_API_KEY="" \
|
227
|
+
SPARK_API_KEY="" SPARK_MODEL_LIST="" \
|
224
228
|
# Stepfun
|
225
|
-
STEPFUN_API_KEY="" \
|
229
|
+
STEPFUN_API_KEY="" STEPFUN_MODEL_LIST="" \
|
226
230
|
# Taichu
|
227
|
-
TAICHU_API_KEY="" \
|
231
|
+
TAICHU_API_KEY="" TAICHU_MODEL_LIST="" \
|
228
232
|
# TogetherAI
|
229
233
|
TOGETHERAI_API_KEY="" TOGETHERAI_MODEL_LIST="" \
|
230
234
|
# Upstage
|
231
|
-
UPSTAGE_API_KEY="" \
|
235
|
+
UPSTAGE_API_KEY="" UPSTAGE_MODEL_LIST="" \
|
232
236
|
# Wenxin
|
233
|
-
WENXIN_ACCESS_KEY="" WENXIN_SECRET_KEY="" \
|
237
|
+
WENXIN_ACCESS_KEY="" WENXIN_SECRET_KEY="" WENXIN_MODEL_LIST="" \
|
234
238
|
# 01.AI
|
235
239
|
ZEROONE_API_KEY="" ZEROONE_MODEL_LIST="" \
|
236
240
|
# Zhipu
|
237
|
-
ZHIPU_API_KEY=""
|
241
|
+
ZHIPU_API_KEY="" ZHIPU_MODEL_LIST=""
|
238
242
|
|
239
243
|
USER nextjs
|
240
244
|
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "أدخل معرف مفتاح الوصول لـ SenseNova",
|
125
|
+
"placeholder": "معرف مفتاح الوصول لـ SenseNova",
|
126
|
+
"title": "معرف مفتاح الوصول"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "أدخل سر مفتاح الوصول لـ SenseNova",
|
130
|
+
"placeholder": "سر مفتاح الوصول لـ SenseNova",
|
131
|
+
"title": "سر مفتاح الوصول"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "أدخل معرف مفتاح الوصول / سر مفتاح الوصول لبدء الجلسة. التطبيق لن يسجل إعدادات المصادقة الخاصة بك",
|
135
|
+
"title": "استخدم معلومات مصادقة SenseNova المخصصة"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "أدخل مفتاح الوصول من منصة بايدو تشيانفان",
|
package/locales/ar/models.json
CHANGED
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math يركز على حل المشكلات في مجال الرياضيات، ويقدم إجابات احترافية للأسئلة الصعبة."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "نموذج الإصدار الأساسي (V4)، بطول سياق 4K، يمتلك قدرات قوية وعامة."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "نموذج الإصدار الأساسي (V4)، بطول سياق 128K، يتفوق في مهام فهم وتوليد النصوص الطويلة."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "نموذج الإصدار الأساسي (V4)، بطول سياق 32K، يمكن استخدامه بمرونة في مختلف السيناريوهات."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "أحدث إصدار من النموذج (V5.5)، بطول سياق 128K، مع تحسينات ملحوظة في القدرة على الاستدلال الرياضي، المحادثات باللغة الإنجليزية، اتباع التعليمات وفهم النصوص الطويلة، مما يجعله في مستوى GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "بطول سياق 32K، يتفوق في فهم المحادثات باللغة الكانتونية مقارنة بـ GPT-4، ويضاهي GPT-4 Turbo في مجالات المعرفة، الاستدلال، الرياضيات وكتابة الأكواد."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "نموذج النسخة القياسية، بطول سياق 8K، بسرعة استجابة عالية."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "نموذج النسخة المتقدمة، بطول سياق 32K، مع تحسين شامل في القدرات، يدعم المحادثات باللغة الصينية والإنجليزية."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "مناسب للأسئلة السريعة، وسيناريوهات ضبط النموذج."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "أحدث إصدار من النموذج (V5.5)، بطول سياق 16K، يدعم إدخال صور متعددة، ويحقق تحسينات شاملة في القدرات الأساسية للنموذج، مع تحسينات كبيرة في التعرف على خصائص الكائنات، العلاقات المكانية، التعرف على أحداث الحركة، فهم المشاهد، التعرف على المشاعر، الاستدلال المنطقي وفهم النصوص وتوليدها."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B هو إصدار مفتوح المصدر، يوفر تجربة حوار محسنة لتطبيقات الحوار."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Qwen هو نموذج لغة ضخم تم تطويره ذاتيًا بواسطة Alibaba Cloud، يتمتع بقدرات قوية في فهم وتوليد اللغة الطبيعية. يمكنه الإجابة على مجموعة متنوعة من الأسئلة، وكتابة المحتوى، والتعبير عن الآراء، وكتابة الشيفرات، ويؤدي دورًا في مجالات متعددة."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "تسعى SiliconFlow إلى تسريع الذكاء الاصطناعي العام (AGI) لفائدة البشرية، من خلال تحسين كفاءة الذكاء الاصطناعي على نطاق واسع باستخدام حزمة GenAI سهلة الاستخدام وذات التكلفة المنخفضة."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Въведете SenseNova Access Key ID",
|
125
|
+
"placeholder": "SenseNova Access Key ID",
|
126
|
+
"title": "Access Key ID"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Въведете SenseNova Access Key Secret",
|
130
|
+
"placeholder": "SenseNova Access Key Secret",
|
131
|
+
"title": "Access Key Secret"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Въведете вашия Access Key ID / Access Key Secret, за да започнете сесия. Приложението няма да записва вашите конфигурации за удостоверяване",
|
135
|
+
"title": "Използвайте персонализирана информация за удостоверяване на SenseNova"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Въведете Access Key от платформата Baidu Qianfan",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math се фокусира върху решаването на математически проблеми, предоставяйки професионални отговори на трудни задачи."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Основна версия на модела (V4), с контекстна дължина 4K, с мощни общи способности."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Основна версия на модела (V4), с контекстна дължина 128K, показваща отлични резултати в задачи за разбиране и генериране на дълги текстове."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Основна версия на модела (V4), с контекстна дължина 32K, гъвкаво приложима в различни сцени."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "Най-новата версия на модела (V5.5), с контекстна дължина 128K, значително подобрена способност в области като математическо разсъждение, английски разговори, следване на инструкции и разбиране на дълги текстове, сравнима с GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "С контекстна дължина 32K, надминава GPT-4 в разбирането на разговори на кантонски, сравним с GPT-4 Turbo в множество области като знания, разсъждение, математика и писане на код."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Стандартна версия на модела, с контекстна дължина 8K, с висока скорост на отговор."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Премиум версия на модела, с контекстна дължина 32K, с напълно подобрени способности, поддържаща разговори на китайски/английски."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Подходящ за бързи въпроси и отговори, сцени на фино настройване на модела."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "Най-новата версия на модела (V5.5), с контекстна дължина 16K, поддържа вход с множество изображения, напълно реализирана оптимизация на основните способности на модела, с голямо подобрение в разпознаването на свойства на обекти, пространствени отношения, разпознаване на действия, разбиране на сцени, разпознаване на емоции, логическо разсъждение и генериране на текст."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B е отворен код версия, предоставяща оптимизирано изживяване в разговорните приложения."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Qwen е самостоятелно разработен свръхголям езиков модел на Alibaba Cloud, с мощни способности за разбиране и генериране на естествен език. Може да отговаря на различни въпроси, да създава текстово съдържание, да изразява мнения и да пише код, играейки роля в множество области."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow се стреми да ускори AGI, за да бъде от полза за човечеството, повишавайки ефективността на мащабния AI чрез лесен за използване и икономически изгоден GenAI стек."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Geben Sie die SenseNova Access Key ID ein",
|
125
|
+
"placeholder": "SenseNova Access Key ID",
|
126
|
+
"title": "Access Key ID"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Geben Sie den SenseNova Access Key Secret ein",
|
130
|
+
"placeholder": "SenseNova Access Key Secret",
|
131
|
+
"title": "Access Key Secret"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Geben Sie Ihre Access Key ID / Access Key Secret ein, um die Sitzung zu starten. Die Anwendung speichert Ihre Authentifizierungsinformationen nicht",
|
135
|
+
"title": "Verwenden Sie benutzerdefinierte SenseNova Authentifizierungsinformationen"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Geben Sie den Access Key der Baidu Qianfan-Plattform ein",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math konzentriert sich auf die Problemlösung im Bereich Mathematik und bietet professionelle Lösungen für schwierige Aufgaben."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Basisversion des Modells (V4) mit 4K Kontextlänge, die über starke allgemeine Fähigkeiten verfügt."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Basisversion des Modells (V4) mit 128K Kontextlänge, das in Aufgaben des Verständnisses und der Generierung langer Texte hervorragende Leistungen zeigt."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Basisversion des Modells (V4) mit 32K Kontextlänge, flexibel einsetzbar in verschiedenen Szenarien."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "Die neueste Modellversion (V5.5) mit 128K Kontextlänge hat signifikante Verbesserungen in den Bereichen mathematische Schlussfolgerungen, englische Konversation, Befolgen von Anweisungen und Verständnis langer Texte, vergleichbar mit GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "Mit 32K Kontextlänge übertrifft es GPT-4 im Verständnis von Konversationen auf Kantonesisch und kann in mehreren Bereichen wie Wissen, Schlussfolgerungen, Mathematik und Programmierung mit GPT-4 Turbo konkurrieren."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Standardmodell mit 8K Kontextlänge und hoher Reaktionsgeschwindigkeit."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Premium-Modell mit 32K Kontextlänge, das umfassende Verbesserungen in den Fähigkeiten bietet und sowohl chinesische als auch englische Konversationen unterstützt."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Geeignet für schnelle Fragen und Antworten sowie Szenarien zur Feinabstimmung des Modells."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "Die neueste Modellversion (V5.5) mit 16K Kontextlänge unterstützt die Eingabe mehrerer Bilder und optimiert umfassend die grundlegenden Fähigkeiten des Modells. Es hat erhebliche Fortschritte in der Erkennung von Objektattributen, räumlichen Beziehungen, Erkennung von Handlungsereignissen, Szenenverständnis, Emotionserkennung, logischem Wissen und Textverständnis und -generierung erzielt."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B ist die Open-Source-Version, die ein optimiertes Dialogerlebnis für Konversationsanwendungen bietet."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Tongyi Qianwen ist ein von Alibaba Cloud selbst entwickeltes, groß angelegtes Sprachmodell mit starken Fähigkeiten zur Verarbeitung und Generierung natürlicher Sprache. Es kann eine Vielzahl von Fragen beantworten, Texte erstellen, Meinungen äußern und Code schreiben und spielt in mehreren Bereichen eine Rolle."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow hat sich zum Ziel gesetzt, AGI zu beschleunigen, um der Menschheit zu dienen, und die Effizienz großangelegter KI durch eine benutzerfreundliche und kostengünstige GenAI-Stack zu steigern."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Enter your SenseNova Access Key ID",
|
125
|
+
"placeholder": "SenseNova Access Key ID",
|
126
|
+
"title": "Access Key ID"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Enter your SenseNova Access Key Secret",
|
130
|
+
"placeholder": "SenseNova Access Key Secret",
|
131
|
+
"title": "Access Key Secret"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Input your Access Key ID / Access Key Secret to start the session. The application will not record your authentication configuration.",
|
135
|
+
"title": "Use Custom SenseNova Authentication Information"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Enter the Access Key from the Baidu Qianfan platform",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math focuses on problem-solving in the field of mathematics, providing expert solutions for challenging problems."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Basic version model (V4) with a context length of 4K, featuring strong general capabilities."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Basic version model (V4) with a context length of 128K, excelling in long text comprehension and generation tasks."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Basic version model (V4) with a context length of 32K, flexibly applicable to various scenarios."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "The latest version model (V5.5) with a context length of 128K shows significant improvements in mathematical reasoning, English conversation, instruction following, and long text comprehension, comparable to GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "With a context length of 32K, it surpasses GPT-4 in Cantonese conversation comprehension and is competitive with GPT-4 Turbo in knowledge, reasoning, mathematics, and code writing across multiple domains."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Standard version model with an 8K context length and high response speed."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Advanced version model with a context length of 32K, offering comprehensive capability enhancements and supporting both Chinese and English conversations."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Suitable for fast question answering and model fine-tuning scenarios."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "The latest version model (V5.5) with a context length of 16K supports multi-image input and fully optimizes the model's foundational capabilities, achieving substantial improvements in object attribute recognition, spatial relationships, action event recognition, scene understanding, emotion recognition, logical reasoning, and text comprehension and generation."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B is an open-source version that provides an optimized conversational experience for chat applications."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Tongyi Qianwen is a large-scale language model independently developed by Alibaba Cloud, featuring strong natural language understanding and generation capabilities. It can answer various questions, create written content, express opinions, and write code, playing a role in multiple fields."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow is dedicated to accelerating AGI for the benefit of humanity, enhancing large-scale AI efficiency through an easy-to-use and cost-effective GenAI stack."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Introduce el ID de clave de acceso de SenseNova",
|
125
|
+
"placeholder": "ID de clave de acceso de SenseNova",
|
126
|
+
"title": "ID de clave de acceso"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Introduce la clave secreta de acceso de SenseNova",
|
130
|
+
"placeholder": "Clave secreta de acceso de SenseNova",
|
131
|
+
"title": "Clave secreta de acceso"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Introduce tu ID de clave de acceso / clave secreta de acceso para comenzar la sesión. La aplicación no registrará tu configuración de autenticación",
|
135
|
+
"title": "Usar información de autenticación personalizada de SenseNova"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Introduce la Access Key de la plataforma Qianfan de Baidu",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math se centra en la resolución de problemas en el ámbito de las matemáticas, proporcionando respuestas profesionales a preguntas de alta dificultad."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Modelo de versión básica (V4), longitud de contexto de 4K, con potentes capacidades generales."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Modelo de versión básica (V4), longitud de contexto de 128K, se destaca en tareas de comprensión y generación de textos largos."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Modelo de versión básica (V4), longitud de contexto de 32K, aplicable de manera flexible en diversos escenarios."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "Modelo de última versión (V5.5), longitud de contexto de 128K, con capacidades significativamente mejoradas en razonamiento matemático, diálogos en inglés, seguimiento de instrucciones y comprensión de textos largos, comparable a GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "Longitud de contexto de 32K, supera a GPT-4 en la comprensión de diálogos en cantonés, siendo comparable a GPT-4 Turbo en múltiples áreas como conocimiento, razonamiento, matemáticas y programación."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Modelo estándar, longitud de contexto de 8K, alta velocidad de respuesta."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Modelo de versión avanzada, longitud de contexto de 32K, con capacidades completamente mejoradas, admite diálogos en chino/inglés."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Adecuado para preguntas rápidas y escenarios de ajuste fino del modelo."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "Modelo de última versión (V5.5), longitud de contexto de 16K, admite entradas de múltiples imágenes, optimizando las capacidades básicas del modelo, logrando mejoras significativas en el reconocimiento de propiedades de objetos, relaciones espaciales, identificación de eventos de acción, comprensión de escenas, reconocimiento de emociones, razonamiento lógico y generación de comprensión de texto."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B es una versión de código abierto, que proporciona una experiencia de conversación optimizada para aplicaciones de diálogo."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Tongyi Qianwen es un modelo de lenguaje de gran escala desarrollado de forma independiente por Alibaba Cloud, con potentes capacidades de comprensión y generación de lenguaje natural. Puede responder a diversas preguntas, crear contenido escrito, expresar opiniones y redactar código, desempeñando un papel en múltiples campos."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow se dedica a acelerar la AGI para beneficiar a la humanidad, mejorando la eficiencia de la IA a gran escala a través de un stack GenAI fácil de usar y de bajo costo."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Entrez l'ID de clé d'accès SenseNova",
|
125
|
+
"placeholder": "ID de clé d'accès SenseNova",
|
126
|
+
"title": "ID de clé d'accès"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Entrez le secret de clé d'accès SenseNova",
|
130
|
+
"placeholder": "Secret de clé d'accès SenseNova",
|
131
|
+
"title": "Secret de clé d'accès"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Entrez votre ID de clé d'accès / secret de clé d'accès pour commencer la session. L'application ne conservera pas vos configurations d'authentification",
|
135
|
+
"title": "Utiliser des informations d'authentification SenseNova personnalisées"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Entrez la clé d'accès de la plateforme Qianfan de Baidu",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math se concentre sur la résolution de problèmes dans le domaine des mathématiques, fournissant des réponses professionnelles pour des questions de haute difficulté."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Modèle de version de base (V4), longueur de contexte de 4K, avec de puissantes capacités générales."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Modèle de version de base (V4), longueur de contexte de 128K, excellent dans les tâches de compréhension et de génération de longs textes."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Modèle de version de base (V4), longueur de contexte de 32K, appliqué de manière flexible à divers scénarios."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "Modèle de dernière version (V5.5), longueur de contexte de 128K, avec des capacités significativement améliorées dans le raisonnement mathématique, les dialogues en anglais, le suivi d'instructions et la compréhension de longs textes, rivalisant avec GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "Longueur de contexte de 32K, surpassant GPT-4 dans la compréhension des dialogues en cantonais, rivalisant avec GPT-4 Turbo dans plusieurs domaines tels que les connaissances, le raisonnement, les mathématiques et la rédaction de code."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Modèle standard, longueur de contexte de 8K, avec une grande rapidité de réponse."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Modèle avancé, longueur de contexte de 32K, avec des capacités globalement améliorées, prenant en charge les dialogues en chinois et en anglais."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Conçu pour des questions-réponses rapides et des scénarios de micro-ajustement du modèle."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "Modèle de dernière version (V5.5), longueur de contexte de 16K, prenant en charge l'entrée de plusieurs images, optimisant les capacités fondamentales du modèle, avec des améliorations significatives dans la reconnaissance des attributs d'objets, les relations spatiales, la reconnaissance d'événements d'action, la compréhension de scènes, la reconnaissance des émotions, le raisonnement logique et la génération de texte."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B est une version open source, offrant une expérience de dialogue optimisée pour les applications de conversation."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Tongyi Qianwen est un modèle de langage à grande échelle développé de manière autonome par Alibaba Cloud, doté de puissantes capacités de compréhension et de génération du langage naturel. Il peut répondre à diverses questions, créer du contenu écrit, exprimer des opinions, rédiger du code, etc., jouant un rôle dans plusieurs domaines."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow s'engage à accélérer l'AGI pour le bénéfice de l'humanité, en améliorant l'efficacité de l'IA à grande échelle grâce à une pile GenAI facile à utiliser et à faible coût."
|
68
69
|
},
|