@lobehub/chat 0.162.15 → 0.162.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.
- package/.env.example +4 -0
- package/CHANGELOG.md +42 -0
- package/Dockerfile +3 -0
- package/README.md +8 -7
- package/README.zh-CN.md +8 -7
- package/docs/self-hosting/advanced/upstream-sync.mdx +1 -1
- package/docs/self-hosting/environment-variables/model-provider.mdx +10 -1
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +9 -0
- package/docs/usage/features/multi-ai-providers.mdx +1 -0
- package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
- package/locales/ar/error.json +3 -1
- package/locales/ar/modelProvider.json +12 -0
- package/locales/bg-BG/error.json +2 -0
- package/locales/bg-BG/modelProvider.json +12 -0
- package/locales/de-DE/error.json +2 -0
- package/locales/de-DE/modelProvider.json +12 -0
- package/locales/en-US/error.json +2 -0
- package/locales/en-US/modelProvider.json +12 -0
- package/locales/es-ES/error.json +2 -0
- package/locales/es-ES/modelProvider.json +12 -0
- package/locales/fr-FR/error.json +2 -0
- package/locales/fr-FR/modelProvider.json +12 -0
- package/locales/it-IT/error.json +2 -0
- package/locales/it-IT/modelProvider.json +12 -0
- package/locales/ja-JP/error.json +2 -0
- package/locales/ja-JP/modelProvider.json +12 -0
- package/locales/ko-KR/error.json +2 -0
- package/locales/ko-KR/modelProvider.json +12 -0
- package/locales/nl-NL/error.json +2 -0
- package/locales/nl-NL/modelProvider.json +12 -0
- package/locales/pl-PL/error.json +2 -0
- package/locales/pl-PL/modelProvider.json +12 -0
- package/locales/pt-BR/error.json +2 -0
- package/locales/pt-BR/modelProvider.json +12 -0
- package/locales/ru-RU/error.json +2 -0
- package/locales/ru-RU/modelProvider.json +12 -0
- package/locales/tr-TR/error.json +2 -0
- package/locales/tr-TR/modelProvider.json +12 -0
- package/locales/vi-VN/error.json +2 -0
- package/locales/vi-VN/modelProvider.json +12 -0
- package/locales/zh-CN/error.json +2 -0
- package/locales/zh-CN/modelProvider.json +12 -0
- package/locales/zh-TW/error.json +2 -0
- package/locales/zh-TW/modelProvider.json +12 -0
- package/package.json +2 -1
- package/src/app/(main)/settings/llm/Qwen/index.tsx +21 -0
- package/src/app/(main)/settings/llm/index.tsx +2 -0
- package/src/app/api/chat/agentRuntime.test.ts +17 -0
- package/src/app/api/chat/agentRuntime.ts +7 -0
- package/src/app/api/errorResponse.test.ts +6 -0
- package/src/app/api/errorResponse.ts +3 -0
- package/src/components/ModelProviderIcon/index.tsx +5 -0
- package/src/config/llm.ts +6 -0
- package/src/config/modelProviders/index.ts +4 -0
- package/src/config/modelProviders/qwen.ts +32 -0
- package/src/const/settings/llm.ts +5 -0
- package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +5 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +4 -0
- package/src/features/Conversation/Error/index.tsx +1 -0
- package/src/libs/agent-runtime/AgentRuntime.ts +8 -1
- package/src/libs/agent-runtime/error.ts +3 -0
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/qwen/index.test.ts +251 -0
- package/src/libs/agent-runtime/qwen/index.ts +33 -0
- package/src/libs/agent-runtime/types/type.ts +1 -1
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.test.ts +121 -0
- package/src/libs/agent-runtime/utils/streams/openai.ts +1 -1
- package/src/server/globalConfig/index.ts +2 -0
- package/src/services/__tests__/chat.test.ts +16 -0
- package/src/services/chat.ts +3 -0
- package/src/types/user/settings/keyVaults.ts +1 -0
package/.env.example
CHANGED
|
@@ -108,6 +108,10 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
|
108
108
|
|
|
109
109
|
# DEEPSEEK_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
110
110
|
|
|
111
|
+
### Qwen AI ####
|
|
112
|
+
|
|
113
|
+
# QWEN_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
114
|
+
|
|
111
115
|
########################################
|
|
112
116
|
############ Market Service ############
|
|
113
117
|
########################################
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.162.17](https://github.com/lobehub/lobe-chat/compare/v0.162.16...v0.162.17)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-06-04**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Fix `response.undefined` error with some provider.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Fix `response.undefined` error with some provider, closes [#2782](https://github.com/lobehub/lobe-chat/issues/2782) ([5676899](https://github.com/lobehub/lobe-chat/commit/5676899))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
### [Version 0.162.16](https://github.com/lobehub/lobe-chat/compare/v0.162.15...v0.162.16)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2024-06-04**</sup>
|
|
33
|
+
|
|
34
|
+
<br/>
|
|
35
|
+
|
|
36
|
+
<details>
|
|
37
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
38
|
+
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
<div align="right">
|
|
42
|
+
|
|
43
|
+
[](#readme-top)
|
|
44
|
+
|
|
45
|
+
</div>
|
|
46
|
+
|
|
5
47
|
### [Version 0.162.15](https://github.com/lobehub/lobe-chat/compare/v0.162.14...v0.162.15)
|
|
6
48
|
|
|
7
49
|
<sup>Released on **2024-06-03**</sup>
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -131,6 +131,7 @@ We have implemented support for the following model service providers:
|
|
|
131
131
|
- **Moonshot AI (Dark Side of the Moon)**: Integrated with the Moonshot series models, an innovative AI startup from China, aiming to provide deeper conversation understanding. [Learn more](https://www.moonshot.cn/)
|
|
132
132
|
- **Minimax**: Integrated the Minimax models, including the MoE model **abab6**, offers a broader range of choices. [Learn more](https://www.minimaxi.com/)
|
|
133
133
|
- **DeepSeek**: Integrated with the DeepSeek series models, an innovative AI startup from China, The product has been designed to provide a model that balances performance with price. [Learn more](https://www.deepseek.com/)
|
|
134
|
+
- **Qwen**: Integrated the Qwen series models, including the latest **qwen-turbo**, **qwen-plus** and **qwen-max**. [Lean more](https://help.aliyun.com/zh/dashscope/developer-reference/model-introduction)
|
|
134
135
|
|
|
135
136
|
At the same time, we are also planning to support more model service providers, such as Replicate and Perplexity, to further enrich our service provider library. If you would like LobeChat to support your favorite service provider, feel free to join our [community discussion](https://github.com/lobehub/lobe-chat/discussions/1284).
|
|
136
137
|
|
|
@@ -262,14 +263,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
|
|
|
262
263
|
|
|
263
264
|
<!-- AGENT LIST -->
|
|
264
265
|
|
|
265
|
-
| Recent Submits
|
|
266
|
-
|
|
|
267
|
-
| [
|
|
268
|
-
| [
|
|
269
|
-
| [
|
|
270
|
-
| [
|
|
266
|
+
| Recent Submits | Description |
|
|
267
|
+
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
268
|
+
| [Expert Response to Reviewer](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | Specializing in natural academic editing, assisting authors in responding to reviewer comments in a scientific, courteous, and point-by-point manner.<br/>`academic-editing` `response-to-reviewer-comments` `scientific-writing` |
|
|
269
|
+
| [Translation of Novels: English to Chinese](https://chat-preview.lobehub.com/market?agent=noveltranslation)<br/><sup>By **[xbtachlb](https://github.com/xbtachlb)** on **2024-06-03**</sup> | Secondary translation of novels<br/>`translation` |
|
|
270
|
+
| [Convert Docker to Docker Compose](https://chat-preview.lobehub.com/market?agent=onekr-docker-2-compose)<br/><sup>By **[onekr-billy](https://github.com/onekr-billy)** on **2024-05-31**</sup> | Specialized in converting Docker run commands to Docker Compose configurations<br/>`docker` `docker-compose` `system-administration` `configuration-file` `conversion` |
|
|
271
|
+
| [Java Class to MySQL](https://chat-preview.lobehub.com/market?agent=onekr-java-2-sql)<br/><sup>By **[onekr-billy](https://github.com/onekr-billy)** on **2024-05-31**</sup> | Specialized in generating SQL scripts that comply with MySQL specifications based on Java class files.<br/>`java-class-to-my-sql` `backend-development` `sql-scripts` `data-conversion` `databases` |
|
|
271
272
|
|
|
272
|
-
> 📊 Total agents: [<kbd>**
|
|
273
|
+
> 📊 Total agents: [<kbd>**285**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
273
274
|
|
|
274
275
|
<!-- AGENT LIST -->
|
|
275
276
|
|
package/README.zh-CN.md
CHANGED
|
@@ -130,6 +130,7 @@
|
|
|
130
130
|
- **OpenRouter**:其支持包括 **Claude 3**,**Gemma**,**Mistral**,**Llama2**和**Cohere**等模型路由,支持智能路由优化,提升使用效率,开放且灵活。[了解更多](https://openrouter.ai/)
|
|
131
131
|
- **Minimax**: 接入了 Minimax 的 AI 模型,包括 MoE 模型 **abab6**,提供了更多的选择空间。[了解更多](https://www.minimaxi.com/)
|
|
132
132
|
- **DeepSeek**: 接入了 DeepSeek 的 AI 模型,包括最新的 **DeepSeek-V2**,提供兼顾性能与价格的模型。[了解更多](https://www.deepseek.com/)
|
|
133
|
+
- **Qwen**: 接入了 Qwen 的 AI 模型,包括最新的 **qwen-turbo**,**qwen-plus** 和 **qwen-max** 等模型。[了解更多](https://help.aliyun.com/zh/dashscope/developer-reference/model-introduction)
|
|
133
134
|
|
|
134
135
|
同时,我们也在计划支持更多的模型服务商,如 Replicate 和 Perplexity 等,以进一步丰富我们的服务商库。如果你希望让 LobeChat 支持你喜爱的服务商,欢迎加入我们的[社区讨论](https://github.com/lobehub/lobe-chat/discussions/1284)。
|
|
135
136
|
|
|
@@ -250,14 +251,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
|
250
251
|
|
|
251
252
|
<!-- AGENT LIST -->
|
|
252
253
|
|
|
253
|
-
| 最近新增
|
|
254
|
-
|
|
|
255
|
-
| [
|
|
256
|
-
| [
|
|
257
|
-
| [
|
|
258
|
-
| [
|
|
254
|
+
| 最近新增 | 助手说明 |
|
|
255
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
|
|
256
|
+
| [审稿回复专家](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | 擅长自然学术编辑,协助作者回复审稿人意见,科学、礼貌、逐点回应。<br/>`学术编辑` `审稿意见回复` `科学写作` |
|
|
257
|
+
| [小说翻译 英译中](https://chat-preview.lobehub.com/market?agent=noveltranslation)<br/><sup>By **[xbtachlb](https://github.com/xbtachlb)** on **2024-06-03**</sup> | 小说二次翻译<br/>`翻译` |
|
|
258
|
+
| [Docker 转 DockerCompose](https://chat-preview.lobehub.com/market?agent=onekr-docker-2-compose)<br/><sup>By **[onekr-billy](https://github.com/onekr-billy)** on **2024-05-31**</sup> | 擅长将 Docker run 命令转换为 Docker Compose 配置<br/>`docker` `docker-compose` `系统运维` `配置文件` `转换` |
|
|
259
|
+
| [Java Class 转 MySQL](https://chat-preview.lobehub.com/market?agent=onekr-java-2-sql)<br/><sup>By **[onekr-billy](https://github.com/onekr-billy)** on **2024-05-31**</sup> | 擅长根据 Java 类文件生成符合 MySQL 规范的 SQL 脚本<br/>`java-class转-my-sql` `后端开发` `sql脚本` `数据转换` `数据库` |
|
|
259
260
|
|
|
260
|
-
> 📊 Total agents: [<kbd>**
|
|
261
|
+
> 📊 Total agents: [<kbd>**285**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
261
262
|
|
|
262
263
|
<!-- AGENT LIST -->
|
|
263
264
|
|
|
@@ -285,6 +285,15 @@ If you need to use Azure OpenAI to provide model services, you can refer to the
|
|
|
285
285
|
- Type: Required
|
|
286
286
|
- Description: This is the API key you applied for in the 01.AI service
|
|
287
287
|
- Default: -
|
|
288
|
-
-
|
|
288
|
+
- Example:`xxxxxx...xxxxxx`
|
|
289
|
+
|
|
290
|
+
## Qwen
|
|
291
|
+
|
|
292
|
+
### `QWEN_API_KEY`
|
|
293
|
+
|
|
294
|
+
- Type: Required
|
|
295
|
+
- Description: This is the DashScope API key you can obtain from Alibaba Cloud
|
|
296
|
+
- Default: -
|
|
297
|
+
- Example:`sk-xxxxx...xxxxx`
|
|
289
298
|
|
|
290
299
|
[model-list]: /docs/self-hosting/advanced/model-list
|
|
@@ -286,3 +286,12 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
|
|
|
286
286
|
- 示例:`xxxxxx...xxxxxx`
|
|
287
287
|
|
|
288
288
|
[model-list]: /docs/self-hosting/advanced/model-list
|
|
289
|
+
|
|
290
|
+
## 通义千问
|
|
291
|
+
|
|
292
|
+
### `QWEN_API_KEY`
|
|
293
|
+
|
|
294
|
+
- 类型:必选
|
|
295
|
+
- 描述:这是你在阿里云百炼平台上获取的 DashScope API 密钥
|
|
296
|
+
- 默认值:-
|
|
297
|
+
- 示例:`sk-xxxxx...xxxxx`
|
|
@@ -46,6 +46,7 @@ We have implemented support for the following model service providers:
|
|
|
46
46
|
- **Together.ai**: Over 100 leading open-source Chat, Language, Image, Code, and Embedding models are available through the Together Inference API. For these models you pay just for what you use. [Learn more](https://www.together.ai/)
|
|
47
47
|
- **Minimax**: Integrated the Minimax models, including the MoE model **abab6**, offers a broader range of choices. [Learn more](https://www.minimaxi.com/)
|
|
48
48
|
- **DeepSeek**: Integrated with the DeepSeek series models, an innovative AI startup from China, The product has been designed to provide a model that balances performance with price. [Learn more](https://www.deepseek.com/)
|
|
49
|
+
- **Qwen**: Integrated with the Qwen series models, including the latest **qwen-turbo**, **qwen-plus** and **qwen-max**. [Learn more](https://help.aliyun.com/zh/dashscope/developer-reference/model-introduction)
|
|
49
50
|
|
|
50
51
|
At the same time, we are also planning to support more model service providers, such as Replicate and Perplexity, to further enrich our service provider library. If you would like LobeChat to support your favorite service provider, feel free to join our [community discussion](https://github.com/lobehub/lobe-chat/discussions/1284).
|
|
51
52
|
|
|
@@ -46,6 +46,7 @@ tags:
|
|
|
46
46
|
- **OpenRouter**:其支持包括 **Claude 3**,**Gemma**,**Mistral**,**Llama2**和**Cohere**等模型路由,支持智能路由优化,提升使用效率,开放且灵活。[了解更多](https://openrouter.ai/)
|
|
47
47
|
- **Minimax**: 接入了 Minimax 的 AI 模型,包括 MoE 模型 **abab6**,提供了更多的选择空间。[了解更多](https://www.minimaxi.com/)
|
|
48
48
|
- **DeepSeek**: 接入了 DeepSeek 的 AI 模型,包括最新的 **DeepSeek-V2**,提供兼顾性能与价格的模型。[了解更多](https://www.deepseek.com/)
|
|
49
|
+
- **Qwen (通义千问)**: 接入了 Qwen 的 AI 模型,包括最新的 **qwen-turbo**,**qwen-plus** 和 **qwen-max** 等模型。[了解更多](https://help.aliyun.com/zh/dashscope/developer-reference/model-introduction)
|
|
49
50
|
|
|
50
51
|
同时,我们也在计划支持更多的模型服务商,如 Replicate 和 Perplexity 等,以进一步丰富我们的服务商库。如果你希望让 LobeChat 支持你喜爱的服务商,欢迎加入我们的[社区讨论](https://github.com/lobehub/lobe-chat/discussions/1284)。
|
|
51
52
|
|
package/locales/ar/error.json
CHANGED
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
"InvalidTogetherAIAPIKey": "مفتاح TogetherAI API غير صحيح أو فارغ، يرجى التحقق من مفتاح TogetherAI API وإعادة المحاولة",
|
|
78
78
|
"InvalidZeroOneAPIKey": "مفتاح ZeroOne API غير صحيح أو فارغ، يرجى التحقق من مفتاح ZeroOne API وإعادة المحاولة",
|
|
79
79
|
"InvalidZhipuAPIKey": "مفتاح Zhipu API غير صحيح أو فارغ، يرجى التحقق من مفتاح Zhipu API وإعادة المحاولة",
|
|
80
|
+
"InvalidQwenAPIKey": "مفتاح Qwen API غير صحيح أو فارغ، يرجى التحقق من مفتاح Qwen API وإعادة المحاولة",
|
|
80
81
|
"LocationNotSupportError": "عذرًا، لا يدعم موقعك الحالي خدمة هذا النموذج، قد يكون ذلك بسبب قيود المنطقة أو عدم توفر الخدمة. يرجى التحقق مما إذا كان الموقع الحالي يدعم استخدام هذه الخدمة، أو محاولة استخدام معلومات الموقع الأخرى.",
|
|
81
82
|
"MinimaxBizError": "حدث خطأ في طلب خدمة Minimax، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
82
83
|
"MistralBizError": "طلب خدمة Mistral AI خاطئ، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
@@ -101,7 +102,8 @@
|
|
|
101
102
|
"PluginSettingsInvalid": "تحتاج هذه الإضافة إلى تكوين صحيح قبل الاستخدام، يرجى التحقق من صحة تكوينك",
|
|
102
103
|
"TogetherAIBizError": "خطأ في طلب خدمة TogetherAI AI، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
103
104
|
"ZeroOneBizError": "طلب خدمة ZeroOneBiz خطأ، يرجى التحقق من المعلومات أدناه أو إعادة المحاولة",
|
|
104
|
-
"ZhipuBizError": "حدث خطأ في طلب خدمة Zhipu، يرجى التحقق من المعلومات التالية أو إعادة المحاولة"
|
|
105
|
+
"ZhipuBizError": "حدث خطأ في طلب خدمة Zhipu، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
106
|
+
"QwenBizError": "حدث خطأ في طلب خدمة Qwen، يرجى التحقق من المعلومات التالية أو إعادة المحاولة"
|
|
105
107
|
},
|
|
106
108
|
"stt": {
|
|
107
109
|
"responseError": "فشل طلب الخدمة، يرجى التحقق من الإعدادات أو إعادة المحاولة"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "استخدام مفتاح API الخاص بـ Perplexity المخصص"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "أدخل مفتاح API الخاص بـ Qwen",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "مفتاح API"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "أدخل مفتاح API الخاص بك في Qwen لبدء الجلسة. لن يتم تسجيل مفتاح الخاص بك من قبل التطبيق",
|
|
229
|
+
"title": "استخدام مفتاح API الخاص بـ Qwen المخصص"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "اختبر ما إذا تم إدخال عنوان الوكيل بشكل صحيح"
|
package/locales/bg-BG/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Невалидна конфигурация на Ollama, моля, проверете конфигурацията на Ollama и опитайте отново",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "Невалиден или празен API ключ на OpenRouter. Моля, проверете вашия API ключ на OpenRouter и опитайте отново.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "API ключът на Perplexity е неправилен или празен. Моля, проверете API ключа на Perplexity и опитайте отново.",
|
|
77
|
+
"InvalidQwenAPIKey": "API ключът на Qwen е неправилен или празен. Моля, проверете API ключа на Qwen и опитайте отново.",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "TogetherAI API ключът е неправилен или липсва, моля, проверете TogetherAI API ключа и опитайте отново",
|
|
78
79
|
"InvalidZeroOneAPIKey": "API ключът на 01-AI е неправилен или празен. Моля, проверете API ключа на 01-AI и опитайте отново.",
|
|
79
80
|
"InvalidZhipuAPIKey": "API ключът на Zhipu е неправилен или празен. Моля, проверете API ключа на Zhipu и опитайте отново.",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Съжаляваме, клиентът на OpenAPI не успя да се инициализира. Моля, проверете дали информацията за конфигурацията на OpenAPI е правилна.",
|
|
100
101
|
"PluginServerError": "Заявката към сървъра на плъгина върна грешка. Моля, проверете файла на манифеста на плъгина, конфигурацията на плъгина или изпълнението на сървъра въз основа на информацията за грешката по-долу",
|
|
101
102
|
"PluginSettingsInvalid": "Този плъгин трябва да бъде конфигуриран правилно, преди да може да се използва. Моля, проверете дали конфигурацията ви е правилна",
|
|
103
|
+
"QwenBizError": "Грешка при заявка към услугата Qwen. Моля, отстранете неизправностите или опитайте отново въз основа на следната информация.",
|
|
102
104
|
"TogetherAIBizError": "Възникна грешка при заявка към TogetherAI AI услугата, моля, проверете следната информация или опитайте отново",
|
|
103
105
|
"ZeroOneBizError": "Грешка при заявка към услугата 01-AI. Моля, отстранете неизправностите или опитайте отново въз основа на следната информация.",
|
|
104
106
|
"ZhipuBizError": "Грешка при заявка към услугата Zhipu. Моля, отстранете неизправностите или опитайте отново въз основа на следната информация."
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Използване на персонализиран Perplexity API ключ"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Въведете API Key, получен от Интелигентен албум",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "API ключ"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Въведете вашия Qwen API ключ, за да започнете сесия. Приложението няма да запази вашия API ключ",
|
|
229
|
+
"title": "Използване на персонализиран Qwen API ключ"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Тестване дали адресът на прокси е попълнен правилно"
|
package/locales/de-DE/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Ollama-Konfiguration ist ungültig. Bitte überprüfen Sie die Ollama-Konfiguration und versuchen Sie es erneut.",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "OpenRouter API-Schlüssel ungültig oder leer. Bitte überprüfen Sie den OpenRouter API-Schlüssel und versuchen Sie es erneut.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Perplexity API Key ist ungültig oder leer. Bitte überprüfen Sie den Perplexity API Key und versuchen Sie es erneut.",
|
|
77
|
+
"InvalidQwenAPIKey": "Der Qwen API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Qwen API-Schlüssel und versuchen Sie es erneut.",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "TogetherAI API-Schlüssel ungültig oder leer. Bitte überprüfen Sie den TogetherAI API-Schlüssel und versuchen Sie es erneut.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "Ungültiger oder leerer ZeroOne-API-Schlüssel. Bitte überprüfen Sie den ZeroOne-API-Schlüssel und versuchen Sie es erneut.",
|
|
79
80
|
"InvalidZhipuAPIKey": "Der Zhipu API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Zhipu API-Schlüssel und versuchen Sie es erneut.",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Entschuldigung, die Initialisierung des OpenAPI-Clients ist fehlgeschlagen. Bitte überprüfen Sie die Konfigurationsinformationen des OpenAPI auf Richtigkeit",
|
|
100
101
|
"PluginServerError": "Fehler bei der Serveranfrage des Plugins. Bitte überprüfen Sie die Fehlerinformationen unten in Ihrer Plugin-Beschreibungsdatei, Plugin-Konfiguration oder Serverimplementierung",
|
|
101
102
|
"PluginSettingsInvalid": "Das Plugin muss korrekt konfiguriert werden, um verwendet werden zu können. Bitte überprüfen Sie Ihre Konfiguration auf Richtigkeit",
|
|
103
|
+
"QwenBizError": "Es ist ein Fehler bei der Anforderung des Qwen-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
102
104
|
"TogetherAIBizError": "Fehler bei der Anforderung des TogetherAI AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
103
105
|
"ZeroOneBizError": "Anfrage an ZeroOneBiz-Dienst fehlgeschlagen. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
104
106
|
"ZhipuBizError": "Es ist ein Fehler bei der Anforderung des Zhipu-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut."
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Verwenden Sie einen individuellen Perplexity-API-Schlüssel"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Geben Sie Ihren API-Key von Qwen ein",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "API Key"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Geben Sie Ihren individuellen Qwen-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
229
|
+
"title": "Verwenden Sie einen individuellen Qwen-API-Schlüssel"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
package/locales/en-US/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "Invalid or empty OpenRouter API Key. Please check your OpenRouter API Key and try again.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Perplexity API Key is incorrect or empty. Please check the Perplexity API Key and retry.",
|
|
77
|
+
"InvalidQwenAPIKey": "Qwen API Key is incorrect or empty. Please check the Qwen API Key and retry.",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "Invalid or empty TogetherAI API Key. Please check your TogetherAI API Key and try again.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "01-AI API Key is incorrect or empty. Please check the 01-AI API Key and retry.",
|
|
79
80
|
"InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Sorry, the OpenAPI client failed to initialize. Please check if the OpenAPI configuration information is correct.",
|
|
100
101
|
"PluginServerError": "Plugin server request returned an error. Please check your plugin manifest file, plugin configuration, or server implementation based on the error information below",
|
|
101
102
|
"PluginSettingsInvalid": "This plugin needs to be correctly configured before it can be used. Please check if your configuration is correct",
|
|
103
|
+
"QwenBizError": "Error requesting Qwen service. Please troubleshoot or retry based on the following information.",
|
|
102
104
|
"TogetherAIBizError": "Error requesting TogetherAI AI service. Please troubleshoot or retry based on the following information.",
|
|
103
105
|
"ZeroOneBizError": "Error requesting 01-AI service. Please troubleshoot or retry based on the following information.",
|
|
104
106
|
"ZhipuBizError": "Error requesting Zhipu service. Please troubleshoot or retry based on the following information."
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Use custom Perplexity API Key"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Enter the API Key from Qwen",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "API Key"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Enter your Qwen API Key to start the session. The app will not store your API Key.",
|
|
229
|
+
"title": "Use Custom Qwen API Key"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Test if the proxy address is correctly filled in"
|
package/locales/es-ES/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "La configuración de Ollama no es válida, por favor revisa la configuración de Ollama e inténtalo de nuevo",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "La clave de API de OpenRouter es incorrecta o está vacía. Por favor, revisa la clave de API de OpenRouter e inténtalo de nuevo",
|
|
76
76
|
"InvalidPerplexityAPIKey": "La clave de API de Perplexity es inválida o está vacía. Por favor, verifica la clave de API de Perplexity e inténtalo de nuevo",
|
|
77
|
+
"InvalidQwenAPIKey": "La clave de API de Qwen es incorrecta o está vacía, por favor, verifica la clave de API de Qwen e inténtalo de nuevo",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "La clave de API de TogetherAI es incorrecta o está vacía. Por favor, revisa la clave de API de TogetherAI e inténtalo de nuevo",
|
|
78
79
|
"InvalidZeroOneAPIKey": "La clave de API de ZeroOneBiz es incorrecta o está vacía. Por favor, revise la clave de API de ZeroOneBiz e inténtelo de nuevo.",
|
|
79
80
|
"InvalidZhipuAPIKey": "La clave de API de Zhipu es incorrecta o está vacía, por favor, verifica la clave de API de Zhipu e inténtalo de nuevo",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Lo sentimos, la inicialización del cliente OpenAPI ha fallado. Verifique si la información de configuración de OpenAPI es correcta",
|
|
100
101
|
"PluginServerError": "Error al recibir la respuesta del servidor del complemento. Verifique el archivo de descripción del complemento, la configuración del complemento o la implementación del servidor según la información de error a continuación",
|
|
101
102
|
"PluginSettingsInvalid": "Este complemento necesita una configuración correcta antes de poder usarse. Verifique si su configuración es correcta",
|
|
103
|
+
"QwenBizError": "Se produjo un error al solicitar el servicio Qwen, por favor, verifica la siguiente información o inténtalo de nuevo",
|
|
102
104
|
"TogetherAIBizError": "Error al solicitar el servicio de IA de TogetherAI. Por favor, revisa la siguiente información o inténtalo de nuevo",
|
|
103
105
|
"ZeroOneBizError": "Se produjo un error al solicitar el servicio ZeroOneBiz. Por favor, revise la siguiente información o inténtelo de nuevo.",
|
|
104
106
|
"ZhipuBizError": "Se produjo un error al solicitar el servicio Zhipu, por favor, verifica la siguiente información o inténtalo de nuevo"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Usar clave de API de Perplexity personalizada"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Introduce la clave API proporcionada por Qwen",
|
|
224
|
+
"placeholder": "Clave API de Qwen",
|
|
225
|
+
"title": "Clave API"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Introduce tu clave de API de Qwen personalizada para comenzar la sesión. La aplicación no guardará tu clave de API.",
|
|
229
|
+
"title": "Usar clave de API de Zhipu personalizada"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Prueba si la dirección del proxy de la interfaz se ha introducido correctamente"
|
package/locales/fr-FR/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "La configuration d'Ollama n'est pas valide, veuillez vérifier la configuration d'Ollama et réessayer",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "La clé d'API OpenRouter est incorrecte ou manquante. Veuillez vérifier la clé d'API OpenRouter et réessayer.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "La clé API Perplexity est incorrecte ou vide. Veuillez vérifier la clé API Perplexity et réessayer.",
|
|
77
|
+
"InvalidQwenAPIKey": "Clé API Qwen incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "La clé d'API TogetherAI est incorrecte ou manquante. Veuillez vérifier la clé d'API TogetherAI et réessayer.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "La clé d'API ZeroOne est incorrecte ou vide, veuillez vérifier la clé d'API ZeroOne et réessayer",
|
|
79
80
|
"InvalidZhipuAPIKey": "Clé API Zhipu incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Désolé, l'initialisation du client OpenAPI a échoué. Veuillez vérifier les informations de configuration d'OpenAPI.",
|
|
100
101
|
"PluginServerError": "Erreur de réponse du serveur du plugin. Veuillez vérifier le fichier de description du plugin, la configuration du plugin ou la mise en œuvre côté serveur en fonction des informations d'erreur ci-dessous",
|
|
101
102
|
"PluginSettingsInvalid": "Ce plugin doit être correctement configuré avant de pouvoir être utilisé. Veuillez vérifier votre configuration",
|
|
103
|
+
"QwenBizError": "Erreur lors de la demande de service Qwen, veuillez vérifier les informations ci-dessous ou réessayer",
|
|
102
104
|
"TogetherAIBizError": "Erreur commerciale lors de la demande de service TogetherAI AI. Veuillez vérifier les informations ci-dessous ou réessayer.",
|
|
103
105
|
"ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
|
|
104
106
|
"ZhipuBizError": "Erreur lors de la demande de service Zhipu, veuillez vérifier les informations ci-dessous ou réessayer"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Use custom Perplexity API Key"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Entrez la clé API de Qwen",
|
|
224
|
+
"placeholder": "Clé API Qwen",
|
|
225
|
+
"title": "Clé API"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Entrez votre clé API Qwen pour commencer la session. L'application ne stockera pas votre clé API.",
|
|
229
|
+
"title": "Utiliser une clé API Qwen personnalisée"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Test if the proxy address is correctly filled in"
|
package/locales/it-IT/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Configurazione Ollama non valida, controllare la configurazione di Ollama e riprovare",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "La chiave API di OpenRouter non è valida o è vuota. Si prega di controllare la chiave API di OpenRouter e riprovare.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Chiave API Perplexity non valida o vuota, controlla la chiave API Perplexity e riprova",
|
|
77
|
+
"InvalidQwenAPIKey": "Chiave API Qwen non corretta o vuota, controlla la chiave API Qwen e riprova",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "La chiave API di TogetherAI non è valida o è vuota. Si prega di controllare la chiave API di TogetherAI e riprovare.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "La chiave API ZeroOne non è corretta o è vuota, si prega di controllare la chiave API ZeroOne e riprovare",
|
|
79
80
|
"InvalidZhipuAPIKey": "Chiave API Zhipu non corretta o vuota, controlla la chiave API Zhipu e riprova",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Spiacenti, inizializzazione fallita del client OpenAPI. Verifica che le informazioni di configurazione di OpenAPI siano corrette",
|
|
100
101
|
"PluginServerError": "Errore nella risposta del server del plugin. Verifica il file descrittivo del plugin, la configurazione del plugin o l'implementazione del server",
|
|
101
102
|
"PluginSettingsInvalid": "Il plugin deve essere configurato correttamente prima di poter essere utilizzato. Verifica che la tua configurazione sia corretta",
|
|
103
|
+
"QwenBizError": "Errore nella richiesta del servizio Qwen, controlla le informazioni seguenti o riprova",
|
|
102
104
|
"TogetherAIBizError": "Errore di richiesta del servizio TogetherAI AI. Si prega di controllare le informazioni seguenti o riprovare.",
|
|
103
105
|
"ZeroOneBizError": "Si è verificato un errore nel servizio ZeroOneBiz, si prega di controllare le informazioni seguenti o riprovare",
|
|
104
106
|
"ZhipuBizError": "Errore nella richiesta del servizio Zhipu, controlla le informazioni seguenti o riprova"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Usa una chiave API personalizzata da Perplexity"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Inserisci la tua chiave API da Qwen",
|
|
224
|
+
"placeholder": "Chiave API Qwen",
|
|
225
|
+
"title": "Chiave API"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Inserisci la tua chiave API da Qwen per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
|
|
229
|
+
"title": "Usa una chiave API personalizzata da Qwen"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Verifica se l'indirizzo del proxy è stato compilato correttamente"
|
package/locales/ja-JP/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Ollamaの設定が正しくありません。Ollamaの設定を確認してからもう一度お試しください",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "OpenRouter API キーが正しくないか空です。OpenRouter API キーを確認してもう一度お試しください。",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Perplexity APIキーが正しくないか空です。Perplexity APIキーを確認してもう一度お試しください",
|
|
77
|
+
"InvalidQwenAPIKey": "Qwen APIキーが正しくないか空です。Qwen APIキーを確認してから再試行してください。",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "TogetherAI API キーが正しくないか空です。TogetherAI API キーを確認してもう一度お試しください。",
|
|
78
79
|
"InvalidZeroOneAPIKey": "ZeroOne APIキーが正しくないか空です。ZeroOne APIキーを確認して再試行してください。",
|
|
79
80
|
"InvalidZhipuAPIKey": "Zhipu APIキーが正しくないか空です。Zhipu APIキーを確認してから再試行してください。",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "申し訳ありませんが、OpenAPIクライアントの初期化に失敗しました。OpenAPIの設定情報を確認してください。",
|
|
100
101
|
"PluginServerError": "プラグインサーバーのリクエストエラーが発生しました。以下のエラーメッセージを参考に、プラグインのマニフェストファイル、設定、サーバー実装を確認してください",
|
|
101
102
|
"PluginSettingsInvalid": "このプラグインを使用するには、正しい設定が必要です。設定が正しいかどうか確認してください",
|
|
103
|
+
"QwenBizError": "Qwenサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。",
|
|
102
104
|
"TogetherAIBizError": "TogetherAI AI サービスのリクエスト中にエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、もう一度お試しください。",
|
|
103
105
|
"ZeroOneBizError": "リクエストがZeroOneサービスでエラーが発生しました。以下の情報を確認して再試行してください。",
|
|
104
106
|
"ZhipuBizError": "Zhipuサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "カスタムPerplexity APIキーを使用する"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "通义千问",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "通义千问からのAPIキーを入力してください",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "APIキー"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "あなたのQwen APIキーを入力すると、セッションを開始できます。アプリはあなたのAPIキーを記録しません。",
|
|
229
|
+
"title": "カスタムQwen APIキーを使用する"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "プロキシアドレスが正しく入力されているかをテストします"
|
package/locales/ko-KR/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Ollama 구성이 잘못되었습니다. Ollama 구성을 확인한 후 다시 시도하십시오.",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "OpenRouter API 키가 잘못되었거나 비어 있습니다. OpenRouter API 키를 확인한 후 다시 시도하십시오.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Perplexity API 키가 잘못되었거나 비어 있습니다. Perplexity API 키를 확인한 후 다시 시도하십시오.",
|
|
77
|
+
"InvalidQwenAPIKey": "잘못된 또는 비어 있는 Qwen API Key입니다. Qwen API Key를 확인한 후 다시 시도하십시오.",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "TogetherAI API 키가 잘못되었거나 비어 있습니다. TogetherAI API 키를 확인한 후 다시 시도하십시오.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "잘못된 또는 빈 제로원물 API 키입니다. 제로원물 API 키를 확인하고 다시 시도해주세요.",
|
|
79
80
|
"InvalidZhipuAPIKey": "잘못된 또는 비어 있는 Zhipu API Key입니다. Zhipu API Key를 확인한 후 다시 시도하십시오.",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "죄송합니다. OpenAPI 클라이언트 초기화에 실패했습니다. OpenAPI 구성 정보를 확인해주세요.",
|
|
100
101
|
"PluginServerError": "플러그인 서버 요청이 오류로 반환되었습니다. 플러그인 설명 파일, 플러그인 구성 또는 서버 구현을 확인해주세요.",
|
|
101
102
|
"PluginSettingsInvalid": "플러그인을 사용하려면 올바른 구성이 필요합니다. 구성이 올바른지 확인해주세요.",
|
|
103
|
+
"QwenBizError": "Qwen 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
|
|
102
104
|
"TogetherAIBizError": "TogetherAI AI 서비스 요청 중 오류가 발생했습니다. 다음 정보를 확인하고 다시 시도하십시오.",
|
|
103
105
|
"ZeroOneBizError": "제로원물 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
|
|
104
106
|
"ZhipuBizError": "Zhipu 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오."
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "사용자 정의 Perplexity API 키 사용"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Qwen의 API 키를 입력하세요",
|
|
224
|
+
"placeholder": "Qwen API 키",
|
|
225
|
+
"title": "API 키"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "귀하의 Qwen API 키를 입력하면 세션을 시작할 수 있습니다. 애플리케이션은 귀하의 API 키를 기록하지 않습니다",
|
|
229
|
+
"title": "사용자 정의 Qwen API 키 사용"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "프록시 주소가 올바르게 입력되었는지 테스트합니다"
|
package/locales/nl-NL/error.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"InvalidOllamaArgs": "Ollama-configuratie is onjuist, controleer de Ollama-configuratie en probeer het opnieuw",
|
|
75
75
|
"InvalidOpenRouterAPIKey": "OpenRouter API Key is onjuist of leeg. Controleer de OpenRouter API Key en probeer het opnieuw.",
|
|
76
76
|
"InvalidPerplexityAPIKey": "Perplexity API Key is onjuist of leeg. Controleer de Perplexity API Key en probeer het opnieuw.",
|
|
77
|
+
"InvalidQwenAPIKey": "Incorrect or empty Qwen API Key, please check the Qwen API Key and retry",
|
|
77
78
|
"InvalidTogetherAIAPIKey": "TogetherAI API Key is onjuist of leeg. Controleer de TogetherAI API Key en probeer het opnieuw.",
|
|
78
79
|
"InvalidZeroOneAPIKey": "Ongeldige ZeroOneAPI-sleutel of leeg, controleer de ZeroOneAPI-sleutel en probeer het opnieuw",
|
|
79
80
|
"InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"PluginOpenApiInitError": "Sorry, initialisatie van de OpenAPI-client is mislukt. Controleer of de configuratie van OpenAPI juist is",
|
|
100
101
|
"PluginServerError": "Fout bij serverrespons voor plug-in. Controleer de foutinformatie hieronder voor uw plug-inbeschrijvingsbestand, plug-inconfiguratie of serverimplementatie",
|
|
101
102
|
"PluginSettingsInvalid": "Deze plug-in moet correct geconfigureerd zijn voordat deze kan worden gebruikt. Controleer of uw configuratie juist is",
|
|
103
|
+
"QwenBizError": "Error requesting Qwen service, please troubleshoot or retry based on the following information",
|
|
102
104
|
"TogetherAIBizError": "Fout bij het aanvragen van TogetherAI AI-service. Controleer de onderstaande informatie en probeer opnieuw.",
|
|
103
105
|
"ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
|
|
104
106
|
"ZhipuBizError": "Error requesting Zhipu service, please troubleshoot or retry based on the following information"
|
|
@@ -217,6 +217,18 @@
|
|
|
217
217
|
"title": "Gebruik aangepaste Perplexity API-sleutel"
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
|
+
"qwen": {
|
|
221
|
+
"title": "Qwen",
|
|
222
|
+
"token": {
|
|
223
|
+
"desc": "Voer de API Key van Qwen in",
|
|
224
|
+
"placeholder": "Qwen API Key",
|
|
225
|
+
"title": "API Key"
|
|
226
|
+
},
|
|
227
|
+
"unlock": {
|
|
228
|
+
"description": "Voer uw Qwen API-sleutel in om een sessie te starten. De app zal uw API-sleutel niet opslaan",
|
|
229
|
+
"title": "Gebruik aangepaste Qwen API-sleutel"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
220
232
|
"togetherai": {
|
|
221
233
|
"checker": {
|
|
222
234
|
"desc": "Test of het proxyadres correct is ingevuld"
|