@lobehub/chat 1.23.1 → 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 +25 -0
- package/Dockerfile +2 -0
- package/Dockerfile.database +2 -0
- 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 +10 -0
- package/src/config/modelProviders/index.ts +4 -0
- package/src/config/modelProviders/sensenova.ts +124 -0
- 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 +12 -0
- 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,31 @@
|
|
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
|
+
|
5
30
|
### [Version 1.23.1](https://github.com/lobehub/lobe-chat/compare/v1.23.0...v1.23.1)
|
6
31
|
|
7
32
|
<sup>Released on **2024-10-25**</sup>
|
package/Dockerfile
CHANGED
@@ -184,6 +184,8 @@ ENV \
|
|
184
184
|
PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
|
185
185
|
# Qwen
|
186
186
|
QWEN_API_KEY="" QWEN_MODEL_LIST="" \
|
187
|
+
# SenseNova
|
188
|
+
SENSENOVA_ACCESS_KEY_ID="" SENSENOVA_ACCESS_KEY_SECRET="" SENSENOVA_MODEL_LIST="" \
|
187
189
|
# SiliconCloud
|
188
190
|
SILICONCLOUD_API_KEY="" SILICONCLOUD_MODEL_LIST="" SILICONCLOUD_PROXY_URL="" \
|
189
191
|
# Spark
|
package/Dockerfile.database
CHANGED
@@ -219,6 +219,8 @@ ENV \
|
|
219
219
|
PERPLEXITY_API_KEY="" PERPLEXITY_MODEL_LIST="" PERPLEXITY_PROXY_URL="" \
|
220
220
|
# Qwen
|
221
221
|
QWEN_API_KEY="" QWEN_MODEL_LIST="" \
|
222
|
+
# SenseNova
|
223
|
+
SENSENOVA_ACCESS_KEY_ID="" SENSENOVA_ACCESS_KEY_SECRET="" SENSENOVA_MODEL_LIST="" \
|
222
224
|
# SiliconCloud
|
223
225
|
SILICONCLOUD_API_KEY="" SILICONCLOUD_MODEL_LIST="" SILICONCLOUD_PROXY_URL="" \
|
224
226
|
# Spark
|
@@ -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
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Scarica il modello Ollama specificato"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "Inserisci l'ID chiave di accesso SenseNova",
|
125
|
+
"placeholder": "ID chiave di accesso SenseNova",
|
126
|
+
"title": "ID chiave di accesso"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "Inserisci il segreto della chiave di accesso SenseNova",
|
130
|
+
"placeholder": "Segreto della chiave di accesso SenseNova",
|
131
|
+
"title": "Segreto della chiave di accesso"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "Inserisci il tuo ID chiave di accesso / segreto della chiave di accesso per iniziare la sessione. L'app non registrerà la tua configurazione di autenticazione",
|
135
|
+
"title": "Utilizza informazioni di autenticazione personalizzate di SenseNova"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "Inserisci l'Access Key della piattaforma Qianfan di Baidu",
|
@@ -155,6 +155,33 @@
|
|
155
155
|
"Qwen/Qwen2.5-Math-72B-Instruct": {
|
156
156
|
"description": "Qwen2.5-Math si concentra sulla risoluzione di problemi nel campo della matematica, fornendo risposte professionali a domande di alta difficoltà."
|
157
157
|
},
|
158
|
+
"SenseChat": {
|
159
|
+
"description": "Modello di base (V4), lunghezza del contesto di 4K, con potenti capacità generali."
|
160
|
+
},
|
161
|
+
"SenseChat-128K": {
|
162
|
+
"description": "Modello di base (V4), lunghezza del contesto di 128K, si distingue in compiti di comprensione e generazione di testi lunghi."
|
163
|
+
},
|
164
|
+
"SenseChat-32K": {
|
165
|
+
"description": "Modello di base (V4), lunghezza del contesto di 32K, applicabile in vari scenari."
|
166
|
+
},
|
167
|
+
"SenseChat-5": {
|
168
|
+
"description": "Modello dell'ultima versione (V5.5), lunghezza del contesto di 128K, con capacità significativamente migliorate in ragionamento matematico, conversazioni in inglese, seguire istruzioni e comprensione di testi lunghi, paragonabile a GPT-4o."
|
169
|
+
},
|
170
|
+
"SenseChat-5-Cantonese": {
|
171
|
+
"description": "Lunghezza del contesto di 32K, supera GPT-4 nella comprensione delle conversazioni in cantonese, paragonabile a GPT-4 Turbo in vari ambiti come conoscenza, ragionamento, matematica e scrittura di codice."
|
172
|
+
},
|
173
|
+
"SenseChat-Character": {
|
174
|
+
"description": "Modello standard, lunghezza del contesto di 8K, alta velocità di risposta."
|
175
|
+
},
|
176
|
+
"SenseChat-Character-Pro": {
|
177
|
+
"description": "Modello avanzato, lunghezza del contesto di 32K, capacità complessivamente migliorate, supporta conversazioni in cinese/inglese."
|
178
|
+
},
|
179
|
+
"SenseChat-Turbo": {
|
180
|
+
"description": "Adatto per domande e risposte rapide, scenari di micro-ottimizzazione del modello."
|
181
|
+
},
|
182
|
+
"SenseChat-Vision": {
|
183
|
+
"description": "Modello dell'ultima versione (V5.5), lunghezza del contesto di 16K, supporta input multipli di immagini, ottimizzazione completa delle capacità di base del modello, con notevoli miglioramenti nel riconoscimento delle proprietà degli oggetti, relazioni spaziali, riconoscimento di eventi, comprensione delle scene, riconoscimento delle emozioni, ragionamento logico e generazione di testi."
|
184
|
+
},
|
158
185
|
"THUDM/glm-4-9b-chat": {
|
159
186
|
"description": "GLM-4 9B è una versione open source, progettata per fornire un'esperienza di dialogo ottimizzata per applicazioni conversazionali."
|
160
187
|
},
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"qwen": {
|
64
64
|
"description": "Qwen è un modello di linguaggio di grande scala sviluppato autonomamente da Alibaba Cloud, con potenti capacità di comprensione e generazione del linguaggio naturale. Può rispondere a varie domande, creare contenuti testuali, esprimere opinioni e scrivere codice, svolgendo un ruolo in vari settori."
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlow si impegna ad accelerare l'AGI per il bene dell'umanità, migliorando l'efficienza dell'AI su larga scala attraverso stack GenAI facili da usare e a basso costo."
|
68
69
|
},
|
@@ -119,6 +119,22 @@
|
|
119
119
|
"title": "Download specified Ollama model"
|
120
120
|
}
|
121
121
|
},
|
122
|
+
"sensenova": {
|
123
|
+
"sensenovaAccessKeyID": {
|
124
|
+
"desc": "SenseNova アクセスキー ID を入力してください",
|
125
|
+
"placeholder": "SenseNova アクセスキー ID",
|
126
|
+
"title": "アクセスキー ID"
|
127
|
+
},
|
128
|
+
"sensenovaAccessKeySecret": {
|
129
|
+
"desc": "SenseNova アクセスキーシークレットを入力してください",
|
130
|
+
"placeholder": "SenseNova アクセスキーシークレット",
|
131
|
+
"title": "アクセスキーシークレット"
|
132
|
+
},
|
133
|
+
"unlock": {
|
134
|
+
"description": "あなたのアクセスキー ID / アクセスキーシークレットを入力すると、セッションが開始されます。アプリはあなたの認証設定を記録しません",
|
135
|
+
"title": "カスタム SenseNova 認証情報を使用"
|
136
|
+
}
|
137
|
+
},
|
122
138
|
"wenxin": {
|
123
139
|
"accessKey": {
|
124
140
|
"desc": "百度千帆プラットフォームのAccess Keyを入力してください",
|
@@ -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": "通義千問は、アリババクラウドが独自に開発した超大規模言語モデルであり、強力な自然言語理解と生成能力を持っています。さまざまな質問に答えたり、文章を創作したり、意見を表現したり、コードを執筆したりすることができ、さまざまな分野で活躍しています。"
|
65
65
|
},
|
66
|
+
"sensenova": {},
|
66
67
|
"siliconcloud": {
|
67
68
|
"description": "SiliconFlowは、AGIを加速させ、人類に利益をもたらすことを目指し、使いやすくコスト効率の高いGenAIスタックを通じて大規模AIの効率を向上させることに取り組んでいます。"
|
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를 입력하세요",
|