@lobehub/chat 0.150.10 → 0.151.1
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 +3 -0
- package/CHANGELOG.md +50 -0
- package/Dockerfile +3 -0
- package/README.md +1 -0
- package/README.zh-CN.md +1 -0
- package/docs/self-hosting/environment-variables/model-provider.mdx +9 -0
- 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/chat.json +2 -3
- package/locales/ar/error.json +2 -0
- package/locales/ar/modelProvider.json +12 -0
- package/locales/ar/welcome.json +34 -0
- package/locales/bg-BG/chat.json +2 -3
- package/locales/bg-BG/error.json +2 -0
- package/locales/bg-BG/modelProvider.json +12 -0
- package/locales/bg-BG/welcome.json +34 -0
- package/locales/de-DE/chat.json +0 -1
- package/locales/de-DE/error.json +2 -0
- package/locales/de-DE/modelProvider.json +12 -0
- package/locales/de-DE/welcome.json +34 -0
- package/locales/en-US/chat.json +0 -1
- package/locales/en-US/error.json +2 -0
- package/locales/en-US/modelProvider.json +12 -0
- package/locales/en-US/welcome.json +34 -0
- package/locales/es-ES/chat.json +0 -1
- package/locales/es-ES/error.json +2 -0
- package/locales/es-ES/modelProvider.json +12 -0
- package/locales/es-ES/welcome.json +34 -0
- package/locales/fr-FR/chat.json +0 -1
- package/locales/fr-FR/error.json +2 -0
- package/locales/fr-FR/modelProvider.json +12 -0
- package/locales/fr-FR/welcome.json +34 -0
- package/locales/it-IT/chat.json +0 -1
- package/locales/it-IT/error.json +2 -0
- package/locales/it-IT/modelProvider.json +12 -0
- package/locales/it-IT/welcome.json +34 -0
- package/locales/ja-JP/chat.json +0 -1
- package/locales/ja-JP/error.json +2 -0
- package/locales/ja-JP/modelProvider.json +12 -0
- package/locales/ja-JP/welcome.json +35 -1
- package/locales/ko-KR/chat.json +0 -1
- package/locales/ko-KR/error.json +2 -0
- package/locales/ko-KR/modelProvider.json +12 -0
- package/locales/ko-KR/welcome.json +34 -0
- package/locales/nl-NL/chat.json +3 -4
- package/locales/nl-NL/error.json +2 -0
- package/locales/nl-NL/modelProvider.json +12 -0
- package/locales/nl-NL/welcome.json +34 -0
- package/locales/pl-PL/chat.json +2 -3
- package/locales/pl-PL/error.json +2 -0
- package/locales/pl-PL/modelProvider.json +12 -0
- package/locales/pl-PL/welcome.json +34 -0
- package/locales/pt-BR/chat.json +0 -1
- package/locales/pt-BR/error.json +2 -0
- package/locales/pt-BR/modelProvider.json +12 -0
- package/locales/pt-BR/welcome.json +34 -0
- package/locales/ru-RU/chat.json +0 -1
- package/locales/ru-RU/error.json +2 -0
- package/locales/ru-RU/modelProvider.json +12 -0
- package/locales/ru-RU/welcome.json +34 -0
- package/locales/tr-TR/chat.json +1 -2
- package/locales/tr-TR/error.json +2 -0
- package/locales/tr-TR/modelProvider.json +12 -0
- package/locales/tr-TR/welcome.json +34 -0
- package/locales/vi-VN/chat.json +0 -1
- package/locales/vi-VN/error.json +2 -0
- package/locales/vi-VN/modelProvider.json +12 -0
- package/locales/vi-VN/welcome.json +34 -0
- package/locales/zh-CN/chat.json +0 -1
- package/locales/zh-CN/error.json +2 -0
- package/locales/zh-CN/modelProvider.json +12 -0
- package/locales/zh-CN/welcome.json +34 -0
- package/locales/zh-TW/chat.json +0 -1
- package/locales/zh-TW/error.json +2 -0
- package/locales/zh-TW/modelProvider.json +12 -0
- package/locales/zh-TW/welcome.json +34 -0
- package/package.json +1 -1
- package/src/app/api/chat/agentRuntime.test.ts +17 -0
- package/src/app/api/chat/agentRuntime.ts +7 -0
- package/src/app/api/chat/minimax/route.test.ts +24 -0
- package/src/app/api/chat/minimax/route.ts +5 -0
- package/src/app/api/errorResponse.test.ts +6 -0
- package/src/app/api/errorResponse.ts +3 -0
- package/src/app/chat/features/Migration/Failed.tsx +2 -1
- package/src/app/settings/llm/Minimax/index.tsx +26 -0
- package/src/app/settings/llm/index.tsx +2 -0
- package/src/app/settings/sync/components/SystemIcon.tsx +0 -1
- package/src/components/ModelIcon/index.tsx +7 -17
- package/src/components/ModelProviderIcon/index.tsx +5 -0
- package/src/components/ModelTag/ModelIcon.tsx +1 -0
- package/src/config/client.ts +0 -5
- package/src/config/modelProviders/index.ts +4 -0
- package/src/config/modelProviders/minimax.ts +30 -0
- package/src/config/server/provider.ts +9 -0
- package/src/const/guide.ts +86 -0
- package/src/const/settings/index.ts +6 -0
- package/src/const/url.ts +15 -8
- package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +5 -0
- package/src/features/Conversation/Error/index.tsx +1 -0
- package/src/features/Conversation/components/InboxWelcome/AgentsSuggest.tsx +108 -0
- package/src/features/Conversation/components/InboxWelcome/QuestionSuggest.tsx +99 -0
- package/src/features/Conversation/components/InboxWelcome/index.tsx +76 -0
- package/src/features/Conversation/components/VirtualizedList/index.tsx +11 -4
- package/src/layout/GlobalProvider/AppTheme.tsx +2 -1
- package/src/libs/agent-runtime/AgentRuntime.ts +7 -0
- package/src/libs/agent-runtime/error.ts +3 -0
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/minimax/index.test.ts +261 -0
- package/src/libs/agent-runtime/minimax/index.ts +185 -0
- package/src/libs/agent-runtime/togetherai/type.ts +0 -1
- package/src/libs/agent-runtime/types/type.ts +1 -0
- package/src/locales/default/chat.ts +0 -2
- package/src/locales/default/error.ts +3 -0
- package/src/locales/default/modelProvider.ts +12 -0
- package/src/locales/default/welcome.ts +35 -0
- package/src/migrations/FromV3ToV4/types/v3.ts +1 -0
- package/src/services/chat.ts +44 -25
- package/src/store/chat/slices/message/selectors.test.ts +27 -1
- package/src/store/chat/slices/message/selectors.ts +11 -1
- package/src/store/user/slices/settings/actions/llm.ts +2 -0
- package/src/types/settings/modelProvider.ts +1 -0
package/.env.example
CHANGED
|
@@ -100,6 +100,9 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
|
100
100
|
|
|
101
101
|
# MOONSHOT_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
102
102
|
|
|
103
|
+
### Minimax AI ####
|
|
104
|
+
|
|
105
|
+
# MINIMAX_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
103
106
|
|
|
104
107
|
########################################
|
|
105
108
|
############ Market Service ############
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.151.1](https://github.com/lobehub/lobe-chat/compare/v0.151.0...v0.151.1)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-04-29**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Improve Inbox Assistant Welcome Guide.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Improve Inbox Assistant Welcome Guide, closes [#2086](https://github.com/lobehub/lobe-chat/issues/2086) ([df37212](https://github.com/lobehub/lobe-chat/commit/df37212))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 0.151.0](https://github.com/lobehub/lobe-chat/compare/v0.150.10...v0.151.0)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2024-04-29**</sup>
|
|
33
|
+
|
|
34
|
+
#### ✨ Features
|
|
35
|
+
|
|
36
|
+
- **misc**: Support minimax as a new provider.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### What's improved
|
|
44
|
+
|
|
45
|
+
- **misc**: Support minimax as a new provider, closes [#2087](https://github.com/lobehub/lobe-chat/issues/2087) ([00abd82](https://github.com/lobehub/lobe-chat/commit/00abd82))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
### [Version 0.150.10](https://github.com/lobehub/lobe-chat/compare/v0.150.9...v0.150.10)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2024-04-28**</sup>
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -129,6 +129,7 @@ We have implemented support for the following model service providers:
|
|
|
129
129
|
- **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/)
|
|
130
130
|
- **ChatGLM**: Added the **ChatGLM** series models from Zhipuai (GLM-4/GLM-4-vision/GLM-3-turbo), providing users with another efficient conversation model choice. [Learn more](https://www.zhipuai.cn/)
|
|
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
|
+
- **Minimax**: Integrated the Minimax models, including the MoE model **abab6**, offers a broader range of choices. [Learn more](https://www.minimaxi.com/)
|
|
132
133
|
|
|
133
134
|
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).
|
|
134
135
|
|
package/README.zh-CN.md
CHANGED
|
@@ -128,6 +128,7 @@
|
|
|
128
128
|
- **01.AI (零一万物)**:集成了零一万物模型,系列 API 具备较快的推理速度,这不仅缩短了处理时间,同时也保持了出色的模型效果。[了解更多](https://www.lingyiwanwu.com/)
|
|
129
129
|
- **Groq**:接入了 Groq 的 AI 模型,高效处理消息序列,生成回应,胜任多轮对话及单次交互任务。[了解更多](https://groq.com/)
|
|
130
130
|
- **OpenRouter**:其支持包括 **Claude 3**,**Gemma**,**Mistral**,**Llama2**和**Cohere**等模型路由,支持智能路由优化,提升使用效率,开放且灵活。[了解更多](https://openrouter.ai/)
|
|
131
|
+
- **Minimax**: 接入了 Minimax 的 AI 模型,包括 MoE 模型 **abab6**,提供了更多的选择空间。[了解更多](https://www.minimaxi.com/)
|
|
131
132
|
|
|
132
133
|
同时,我们也在计划支持更多的模型服务商,如 Replicate 和 Perplexity 等,以进一步丰富我们的服务商库。如果你希望让 LobeChat 支持你喜爱的服务商,欢迎加入我们的[社区讨论](https://github.com/lobehub/lobe-chat/discussions/1284)。
|
|
133
134
|
|
|
@@ -212,6 +212,15 @@ If you need to use Azure OpenAI to provide model services, you can refer to the
|
|
|
212
212
|
- Default: -
|
|
213
213
|
- Example: `pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
|
|
214
214
|
|
|
215
|
+
## Minimax AI
|
|
216
|
+
|
|
217
|
+
### `MINIMAX_API_KEY`
|
|
218
|
+
|
|
219
|
+
- Type: Required
|
|
220
|
+
- Description: This is the API key you applied for in the Minimax AI service
|
|
221
|
+
- Default: -
|
|
222
|
+
- Example: `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
|
|
223
|
+
|
|
215
224
|
## Mistral AI
|
|
216
225
|
|
|
217
226
|
### `MISTRAL_API_KEY`
|
|
@@ -210,6 +210,15 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
|
|
|
210
210
|
- 默认值:-
|
|
211
211
|
- 示例:`pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
|
|
212
212
|
|
|
213
|
+
## Minimax AI
|
|
214
|
+
|
|
215
|
+
### `MINIMAX_API_KEY`
|
|
216
|
+
|
|
217
|
+
- 类型:必选
|
|
218
|
+
- 描述:这是你在 Minimax AI 服务中申请的 API 密钥
|
|
219
|
+
- 默认值:-
|
|
220
|
+
- 示例:`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
|
|
221
|
+
|
|
213
222
|
## Mistral AI
|
|
214
223
|
|
|
215
224
|
### `MISTRAL_API_KEY`
|
|
@@ -44,6 +44,7 @@ We have implemented support for the following model service providers:
|
|
|
44
44
|
- **OpenRouter**: Supports routing of models including **Claude 3**, **Gemma**, **Mistral**, **Llama2** and **Cohere**, with intelligent routing optimization to improve usage efficiency, open and flexible. [Learn more](https://openrouter.ai/)
|
|
45
45
|
- **01.AI (Yi Model)**: Integrated the 01.AI models, with series of APIs featuring fast inference speed, which not only shortened the processing time, but also maintained excellent model performance. [Learn more](https://01.ai/)
|
|
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
|
+
- **Minimax**: Integrated the Minimax models, including the MoE model **abab6**, offers a broader range of choices. [Learn more](https://www.minimaxi.com/)
|
|
47
48
|
|
|
48
49
|
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).
|
|
49
50
|
|
|
@@ -44,6 +44,7 @@ tags:
|
|
|
44
44
|
- **01.AI (零一万物)**:集成了零一万物模型,系列 API 具备较快的推理速度,这不仅缩短了处理时间,同时也保持了出色的模型效果。[了解更多](https://www.lingyiwanwu.com/)
|
|
45
45
|
- **Groq**:接入了 Groq 的 AI 模型,高效处理消息序列,生成回应,胜任多轮对话及单次交互任务。[了解更多](https://groq.com/)
|
|
46
46
|
- **OpenRouter**:其支持包括 **Claude 3**,**Gemma**,**Mistral**,**Llama2**和**Cohere**等模型路由,支持智能路由优化,提升使用效率,开放且灵活。[了解更多](https://openrouter.ai/)
|
|
47
|
+
- **Minimax**: 接入了 Minimax 的 AI 模型,包括 MoE 模型 **abab6**,提供了更多的选择空间。[了解更多](https://www.minimaxi.com/)
|
|
47
48
|
|
|
48
49
|
同时,我们也在计划支持更多的模型服务商,如 Replicate 和 Perplexity 等,以进一步丰富我们的服务商库。如果你希望让 LobeChat 支持你喜爱的服务商,欢迎加入我们的[社区讨论](https://github.com/lobehub/lobe-chat/discussions/1284)。
|
|
49
50
|
|
package/locales/ar/chat.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"emptyAgent": "لا يوجد مساعد",
|
|
22
22
|
"historyRange": "نطاق التاريخ",
|
|
23
23
|
"inbox": {
|
|
24
|
-
"defaultMessage": "مرحبًا، أنا مساعدك الذكي، يمكنك أن تسألني أي شيء وسأحاول الإجابة عليك. إذا كنت بحاجة إلى مساعد أكثر احترافية أو مخصصة، يمكنك النقر على `+` لإنشاء مساعد مخصص",
|
|
25
24
|
"desc": "قم بتشغيل مجموعة الدماغ وأشعل شرارة التفكير. مساعدك الذكي، هنا حيث يمكنك التواصل بكل شيء",
|
|
26
25
|
"title": "دردشة عشوائية"
|
|
27
26
|
},
|
|
@@ -59,8 +58,8 @@
|
|
|
59
58
|
"newGroup": "مجموعة جديدة",
|
|
60
59
|
"rename": "إعادة تسمية المجموعة",
|
|
61
60
|
"renameSuccess": "تمت إعادة التسمية بنجاح",
|
|
62
|
-
"sortSuccess": "تمت إعادة ترتيب
|
|
63
|
-
"sorting": "جاري تحديث ترتيب
|
|
61
|
+
"sortSuccess": "تمت إعادة ترتيب بنجاح",
|
|
62
|
+
"sorting": "جاري تحديث ترتيب المجموعة...",
|
|
64
63
|
"tooLong": "يجب أن يكون طول اسم المجموعة بين 1 و 20"
|
|
65
64
|
},
|
|
66
65
|
"shareModal": {
|
package/locales/ar/error.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"InvalidBedrockCredentials": "فشلت مصادقة Bedrock، يرجى التحقق من AccessKeyId/SecretAccessKey وإعادة المحاولة",
|
|
46
46
|
"InvalidGoogleAPIKey": "مفتاح Google API غير صحيح أو فارغ، يرجى التحقق من مفتاح Google API وإعادة المحاولة",
|
|
47
47
|
"InvalidGroqAPIKey": "مفتاح Groq API غير صحيح أو فارغ، يرجى التحقق من مفتاح Groq API وإعادة المحاولة",
|
|
48
|
+
"InvalidMinimaxAPIKey": "مفتاح Minimax API غير صحيح أو فارغ، يرجى التحقق من مفتاح Minimax API وإعادة المحاولة",
|
|
48
49
|
"InvalidMistralAPIKey": "مفتاح Mistral AI API غير صحيح أو فارغ، يرجى التحقق من مفتاح Mistral API وإعادة المحاولة",
|
|
49
50
|
"InvalidMoonshotAPIKey": "مفتاح API لـ Moonshot AI غير صحيح أو فارغ، يرجى التحقق من مفتاح API لـ Moonshot وإعادة المحاولة",
|
|
50
51
|
"InvalidOllamaArgs": "تكوين Ollama غير صحيح، يرجى التحقق من تكوين Ollama وإعادة المحاولة",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"InvalidZeroOneAPIKey": "مفتاح ZeroOne API غير صحيح أو فارغ، يرجى التحقق من مفتاح ZeroOne API وإعادة المحاولة",
|
|
55
56
|
"InvalidZhipuAPIKey": "مفتاح Zhipu API غير صحيح أو فارغ، يرجى التحقق من مفتاح Zhipu API وإعادة المحاولة",
|
|
56
57
|
"LocationNotSupportError": "عذرًا، لا يدعم موقعك الحالي خدمة هذا النموذج، قد يكون ذلك بسبب قيود المنطقة أو عدم توفر الخدمة. يرجى التحقق مما إذا كان الموقع الحالي يدعم استخدام هذه الخدمة، أو محاولة استخدام معلومات الموقع الأخرى.",
|
|
58
|
+
"MinimaxBizError": "حدث خطأ في طلب خدمة Minimax، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
57
59
|
"MistralBizError": "طلب خدمة Mistral AI خاطئ، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
58
60
|
"MoonshotBizError": "حدث خطأ في خدمة جانب القمر، يرجى التحقق من المعلومات أدناه أو إعادة المحاولة",
|
|
59
61
|
"NoOpenAIAPIKey": "مفتاح API الخاص بـ OpenAI فارغ، يرجى إضافة مفتاح API الخاص بـ OpenAI",
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
"title": "استخدام مفتاح API الخاص بـ Groq المخصص"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"minimax": {
|
|
99
|
+
"title": "Minimax",
|
|
100
|
+
"token": {
|
|
101
|
+
"desc": "أدخل مفتاح API الخاص بـ Minimax",
|
|
102
|
+
"placeholder": "مفتاح API Minimax",
|
|
103
|
+
"title": "مفتاح API"
|
|
104
|
+
},
|
|
105
|
+
"unlock": {
|
|
106
|
+
"description": "قم بإدخال مفتاح API Minimax الخاص بك لبدء الجلسة. لن يتم تسجيل مفتاح الـ API الخاص بك من قبل التطبيق",
|
|
107
|
+
"title": "استخدام مفتاح API Minimax المخصص"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
98
110
|
"mistral": {
|
|
99
111
|
"title": "Mistral AI",
|
|
100
112
|
"token": {
|
package/locales/ar/welcome.json
CHANGED
|
@@ -4,6 +4,40 @@
|
|
|
4
4
|
"market": "تسوق في السوق",
|
|
5
5
|
"start": "ابدأ الآن"
|
|
6
6
|
},
|
|
7
|
+
"guide": {
|
|
8
|
+
"agents": {
|
|
9
|
+
"replaceBtn": "تغيير",
|
|
10
|
+
"title": "إضافة توصيات المساعدين:"
|
|
11
|
+
},
|
|
12
|
+
"defaultMessage": "أنا LobeChat، مساعدك الذكي الشخصي. كيف يمكنني مساعدتك اليوم؟\nإذا كنت بحاجة إلى مساعد أكثر احترافية أو تخصيصًا، يمكنك النقر على `+` لإنشاء مساعد مخصص",
|
|
13
|
+
"qa": {
|
|
14
|
+
"q01": "ما هو LobeHub؟",
|
|
15
|
+
"q02": "ما هو LobeChat؟",
|
|
16
|
+
"q03": "هل يدعم LobeChat الدعم المجتمعي؟",
|
|
17
|
+
"q04": "ما هي الوظائف المدعومة بواسطة LobeChat؟",
|
|
18
|
+
"q05": "كيفية نشر واستخدام LobeChat؟",
|
|
19
|
+
"q06": "ما هي تكلفة LobeChat؟",
|
|
20
|
+
"q07": "هل LobeChat مجاني؟",
|
|
21
|
+
"q08": "هل هناك إصدار خدمة سحابية؟",
|
|
22
|
+
"q09": "هل يدعم نماذج اللغة المحلية؟",
|
|
23
|
+
"q10": "هل يدعم التعرف على الصور والتوليف؟",
|
|
24
|
+
"q11": "هل يدعم توليف الصوت والتعرف على الصوت؟",
|
|
25
|
+
"q12": "هل يدعم نظام الإضافات؟",
|
|
26
|
+
"q13": "هل يوجد سوق خاص للحصول على GPTs؟",
|
|
27
|
+
"q14": "هل يدعم مزودو خدمات الذكاء الاصطناعي المتعددة؟",
|
|
28
|
+
"q15": "ماذا يجب علي فعله إذا واجهت مشكلة أثناء الاستخدام؟"
|
|
29
|
+
},
|
|
30
|
+
"questions": {
|
|
31
|
+
"moreBtn": "معرفة المزيد",
|
|
32
|
+
"title": "الأسئلة الشائعة:"
|
|
33
|
+
},
|
|
34
|
+
"welcome": {
|
|
35
|
+
"afternoon": "مساء الخير",
|
|
36
|
+
"morning": "صباح الخير",
|
|
37
|
+
"night": "مساء الخير",
|
|
38
|
+
"noon": "نهاراً"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
"header": "مرحبًا بكم في الاستخدام",
|
|
8
42
|
"pickAgent": "أو اختيار قالب مساعد من القائمة التالية",
|
|
9
43
|
"skip": "تخطى الإنشاء",
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"emptyAgent": "Няма наличен асистент",
|
|
22
22
|
"historyRange": "Диапазон на историята",
|
|
23
23
|
"inbox": {
|
|
24
|
-
"defaultMessage": "Здравей, аз съм твоят виртуален агент. Можеш да ме питаш всичко и аз ще направя всичко възможно да ти отговоря. Ако имаш нужда от по-професионален или персонализиран агент, кликни върху `+` за да създадеш такъв.",
|
|
25
24
|
"desc": "Активирай мозъчния клъстер и събуди креативното мислене. Твоят виртуален агент е тук, за да общува с теб за всичко.",
|
|
26
25
|
"title": "Просто чати"
|
|
27
26
|
},
|
|
@@ -59,8 +58,8 @@
|
|
|
59
58
|
"newGroup": "Нова група",
|
|
60
59
|
"rename": "Преименувай група",
|
|
61
60
|
"renameSuccess": "Преименувана успешно",
|
|
62
|
-
"sortSuccess": "
|
|
63
|
-
"sorting": "
|
|
61
|
+
"sortSuccess": "Пренареждането е успешно",
|
|
62
|
+
"sorting": "Актуализиране на подредбата на групата...",
|
|
64
63
|
"tooLong": "Дължината на името на групата трябва да бъде между 1-20 символа"
|
|
65
64
|
},
|
|
66
65
|
"shareModal": {
|
package/locales/bg-BG/error.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"InvalidBedrockCredentials": "Удостоверяването на Bedrock е неуспешно. Моля, проверете AccessKeyId/SecretAccessKey и опитайте отново.",
|
|
46
46
|
"InvalidGoogleAPIKey": "API ключът на Google е неправилен или празен. Моля, проверете API ключа на Google и опитайте отново.",
|
|
47
47
|
"InvalidGroqAPIKey": "API ключът на Groq е неправилен или празен. Моля, проверете API ключа на Groq и опитайте отново.",
|
|
48
|
+
"InvalidMinimaxAPIKey": "Невалиден или липсващ ключ за Minimax API, моля проверете ключа за Minimax API и опитайте отново",
|
|
48
49
|
"InvalidMistralAPIKey": "Неправилен или празен API ключ на Mistral AI. Моля, проверете вашия API ключ на Mistral и опитайте отново.",
|
|
49
50
|
"InvalidMoonshotAPIKey": "API ключът на Moonshot AI е неправилен или празен, моля, проверете API ключа на Moonshot и опитайте отново.",
|
|
50
51
|
"InvalidOllamaArgs": "Невалидна конфигурация на Ollama, моля, проверете конфигурацията на Ollama и опитайте отново",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"InvalidZeroOneAPIKey": "API ключът на 01-AI е неправилен или празен. Моля, проверете API ключа на 01-AI и опитайте отново.",
|
|
55
56
|
"InvalidZhipuAPIKey": "API ключът на Zhipu е неправилен или празен. Моля, проверете API ключа на Zhipu и опитайте отново.",
|
|
56
57
|
"LocationNotSupportError": "Съжаляваме, вашето текущо местоположение не поддържа тази услуга на модела. Това може да се дължи на регионални ограничения или на недостъпност на услугата. Моля, потвърдете дали текущото местоположение поддържа използването на тази услуга или опитайте да използвате друго местоположение.",
|
|
58
|
+
"MinimaxBizError": "Грешка при заявка към услугата Minimax, моля проверете информацията по-долу или опитайте отново",
|
|
57
59
|
"MistralBizError": "Възникна грешка при заявка към услугата Mistral AI. Моля, отстранете неизправностите въз основа на следната информация или опитайте отново.",
|
|
58
60
|
"MoonshotBizError": "Възникна грешка с услугата Moonshot, моля, отстранете неизправностите или опитайте отново въз основа на следната информация.",
|
|
59
61
|
"NoOpenAIAPIKey": "API ключът на OpenAI е празен, моля, добавете персонализиран API ключ на OpenAI",
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
"title": "Използване на персонализиран Groq API ключ"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"minimax": {
|
|
99
|
+
"title": "Минимакс",
|
|
100
|
+
"token": {
|
|
101
|
+
"desc": "Въведете API ключ от Минимакс",
|
|
102
|
+
"placeholder": "API ключ на Минимакс",
|
|
103
|
+
"title": "API ключ"
|
|
104
|
+
},
|
|
105
|
+
"unlock": {
|
|
106
|
+
"description": "Само въведете вашия API ключ от Минимакс, за да започнете сесия. Приложението няма да запази вашия API ключ",
|
|
107
|
+
"title": "Използване на персонализиран API ключ от Минимакс"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
98
110
|
"mistral": {
|
|
99
111
|
"title": "Mistral AI",
|
|
100
112
|
"token": {
|
|
@@ -4,6 +4,40 @@
|
|
|
4
4
|
"market": "Пазар",
|
|
5
5
|
"start": "Започни сега"
|
|
6
6
|
},
|
|
7
|
+
"guide": {
|
|
8
|
+
"agents": {
|
|
9
|
+
"replaceBtn": "Смени",
|
|
10
|
+
"title": "Препоръчване на нови асистенти:"
|
|
11
|
+
},
|
|
12
|
+
"defaultMessage": "Аз съм LobeChat, твоят личен интелигентен асистент. Как мога да ти помогна днес?\nАко искаш по-професионален или персонализиран асистент, кликни на `+` за създаване на персонализиран асистент.",
|
|
13
|
+
"qa": {
|
|
14
|
+
"q01": "Какво е LobeHub?",
|
|
15
|
+
"q02": "Какво е LobeChat?",
|
|
16
|
+
"q03": "Има ли LobeChat общностна подкрепа?",
|
|
17
|
+
"q04": "Какви функции поддържа LobeChat?",
|
|
18
|
+
"q05": "Как да разгърнем и използваме LobeChat?",
|
|
19
|
+
"q06": "Какво е ценообразуванието на LobeChat?",
|
|
20
|
+
"q07": "Дали LobeChat е безплатен?",
|
|
21
|
+
"q08": "Има ли облачна версия?",
|
|
22
|
+
"q09": "Поддържа ли локални езикови модели?",
|
|
23
|
+
"q10": "Поддържа ли разпознаване и генериране на изображения?",
|
|
24
|
+
"q11": "Поддържа ли синтез на глас и разпознаване на глас?",
|
|
25
|
+
"q12": "Поддържа ли система за добавяне на модули?",
|
|
26
|
+
"q13": "Има ли собствен пазар за получаване на GPTs?",
|
|
27
|
+
"q14": "Поддържа ли няколко доставчика на AI услуги?",
|
|
28
|
+
"q15": "Какво да правя, ако имам проблем при използването?"
|
|
29
|
+
},
|
|
30
|
+
"questions": {
|
|
31
|
+
"moreBtn": "Научи повече",
|
|
32
|
+
"title": "Често задавани въпроси:"
|
|
33
|
+
},
|
|
34
|
+
"welcome": {
|
|
35
|
+
"afternoon": "Добър ден",
|
|
36
|
+
"morning": "Добро утро",
|
|
37
|
+
"night": "Добър вечер",
|
|
38
|
+
"noon": "Добър ден"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
"header": "Добре дошли",
|
|
8
42
|
"pickAgent": "Или изберете от следните шаблони на агенти",
|
|
9
43
|
"skip": "Пропусни създаването",
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"emptyAgent": "Kein Assistent verfügbar",
|
|
22
22
|
"historyRange": "Verlaufsbereich",
|
|
23
23
|
"inbox": {
|
|
24
|
-
"defaultMessage": "Hallo, ich bin dein intelligenter Assistent. Du kannst mir jede Frage stellen, und ich werde mein Bestes tun, um sie zu beantworten. Wenn du einen professionelleren oder maßgeschneiderten Assistenten benötigst, klicke auf das `+`, um einen benutzerdefinierten Assistenten zu erstellen.",
|
|
25
24
|
"desc": "Aktiviere das Gehirncluster und entfache den Funken des Denkens. Dein intelligenter Assistent, der mit dir über alles kommuniziert.",
|
|
26
25
|
"title": "Lass uns plaudern"
|
|
27
26
|
},
|
package/locales/de-DE/error.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"InvalidBedrockCredentials": "Die Bedrock-Authentifizierung ist fehlgeschlagen. Bitte überprüfen Sie AccessKeyId/SecretAccessKey und versuchen Sie es erneut.",
|
|
46
46
|
"InvalidGoogleAPIKey": "Der Google API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Google API-Schlüssel und versuchen Sie es erneut.",
|
|
47
47
|
"InvalidGroqAPIKey": "Der Groq API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Groq API-Schlüssel und versuchen Sie es erneut.",
|
|
48
|
+
"InvalidMinimaxAPIKey": "Ungültiger oder leerer Minimax-API-Schlüssel. Bitte überprüfen Sie den Minimax-API-Schlüssel und versuchen Sie es erneut.",
|
|
48
49
|
"InvalidMistralAPIKey": "Der Mistral AI-API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Mistral-API-Schlüssel und versuchen Sie es erneut.",
|
|
49
50
|
"InvalidMoonshotAPIKey": "Ungültiger oder leerer Moonshot AI API-Schlüssel. Bitte überprüfen Sie den Moonshot API-Schlüssel und versuchen Sie es erneut.",
|
|
50
51
|
"InvalidOllamaArgs": "Ollama-Konfiguration ist ungültig. Bitte überprüfen Sie die Ollama-Konfiguration und versuchen Sie es erneut.",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"InvalidZeroOneAPIKey": "Ungültiger oder leerer ZeroOne-API-Schlüssel. Bitte überprüfen Sie den ZeroOne-API-Schlüssel und versuchen Sie es erneut.",
|
|
55
56
|
"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.",
|
|
56
57
|
"LocationNotSupportError": "Entschuldigung, Ihr Standort unterstützt diesen Modellservice möglicherweise aufgrund von regionalen Einschränkungen oder nicht aktivierten Diensten nicht. Bitte überprüfen Sie, ob der aktuelle Standort die Verwendung dieses Dienstes unterstützt, oder versuchen Sie, andere Standortinformationen zu verwenden.",
|
|
58
|
+
"MinimaxBizError": "Fehler beim Abrufen des Minimax-Dienstes. Bitte überprüfen Sie die folgenden Informationen und versuchen Sie es erneut.",
|
|
57
59
|
"MistralBizError": "Beim Anfordern des Mistral AI-Dienstes ist ein Fehler aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
58
60
|
"MoonshotBizError": "Fehler beim Abrufen des Dark Side of the Moon-Services. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
59
61
|
"NoOpenAIAPIKey": "Der OpenAI-API-Schlüssel ist leer. Bitte fügen Sie einen benutzerdefinierten OpenAI-API-Schlüssel hinzu",
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
"title": "Verwenden Sie einen individuellen Groq-API-Schlüssel"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"minimax": {
|
|
99
|
+
"title": "Minimax",
|
|
100
|
+
"token": {
|
|
101
|
+
"desc": "Geben Sie Ihren API-Schlüssel von Minimax ein",
|
|
102
|
+
"placeholder": "Minimax API-Schlüssel",
|
|
103
|
+
"title": "API-Schlüssel"
|
|
104
|
+
},
|
|
105
|
+
"unlock": {
|
|
106
|
+
"description": "Geben Sie Ihren Minimax API-Schlüssel ein, um die Sitzung zu starten. Die Anwendung speichert Ihren API-Schlüssel nicht.",
|
|
107
|
+
"title": "Verwenden Sie einen benutzerdefinierten Minimax API-Schlüssel"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
98
110
|
"mistral": {
|
|
99
111
|
"title": "Mistral AI",
|
|
100
112
|
"token": {
|
|
@@ -4,6 +4,40 @@
|
|
|
4
4
|
"market": "Markt durchstöbern",
|
|
5
5
|
"start": "Jetzt starten"
|
|
6
6
|
},
|
|
7
|
+
"guide": {
|
|
8
|
+
"agents": {
|
|
9
|
+
"replaceBtn": "Ersetzen",
|
|
10
|
+
"title": "Neue Assistentenempfehlung:"
|
|
11
|
+
},
|
|
12
|
+
"defaultMessage": "Ich bin LobeChat, dein persönlicher intelligenter Assistent. Wie kann ich dir heute helfen?\nWenn du einen professionelleren oder maßgeschneiderten Assistenten benötigst, klicke auf `+`, um einen benutzerdefinierten Assistenten zu erstellen.",
|
|
13
|
+
"qa": {
|
|
14
|
+
"q01": "Was ist LobeHub?",
|
|
15
|
+
"q02": "Was ist LobeChat?",
|
|
16
|
+
"q03": "Hat LobeChat Community-Support?",
|
|
17
|
+
"q04": "Welche Funktionen unterstützt LobeChat?",
|
|
18
|
+
"q05": "Wie wird LobeChat bereitgestellt und verwendet?",
|
|
19
|
+
"q06": "Wie sind die Preise für LobeChat?",
|
|
20
|
+
"q07": "Ist LobeChat kostenlos?",
|
|
21
|
+
"q08": "Gibt es eine Cloud-Service-Version?",
|
|
22
|
+
"q09": "Unterstützt LobeChat lokale Sprachmodelle?",
|
|
23
|
+
"q10": "Unterstützt LobeChat Bilderkennung und -erstellung?",
|
|
24
|
+
"q11": "Unterstützt LobeChat Sprachsynthese und Spracherkennung?",
|
|
25
|
+
"q12": "Unterstützt LobeChat ein Plugin-System?",
|
|
26
|
+
"q13": "Gibt es einen eigenen Markt, um GPTs zu erhalten?",
|
|
27
|
+
"q14": "Unterstützt LobeChat verschiedene KI-Service-Anbieter?",
|
|
28
|
+
"q15": "Was soll ich tun, wenn ich beim Gebrauch auf Probleme stoße?"
|
|
29
|
+
},
|
|
30
|
+
"questions": {
|
|
31
|
+
"moreBtn": "Mehr erfahren",
|
|
32
|
+
"title": "Häufig gestellte Fragen:"
|
|
33
|
+
},
|
|
34
|
+
"welcome": {
|
|
35
|
+
"afternoon": "Guten Nachmittag",
|
|
36
|
+
"morning": "Guten Morgen",
|
|
37
|
+
"night": "Guten Abend",
|
|
38
|
+
"noon": "Guten Mittag"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
"header": "Willkommen",
|
|
8
42
|
"pickAgent": "Oder wählen Sie eine Vorlage aus den folgenden Assistenten",
|
|
9
43
|
"skip": "Erstellung überspringen",
|
package/locales/en-US/chat.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"emptyAgent": "No assistant available",
|
|
22
22
|
"historyRange": "History Range",
|
|
23
23
|
"inbox": {
|
|
24
|
-
"defaultMessage": "Hello, I'm your virtual agent. You can ask me anything, and I'll do my best to answer you. If you need a more professional or customized agent, click on `+` to create a custom agent.",
|
|
25
24
|
"desc": "Activate the brain cluster and spark creative thinking. Your virtual agent is here to communicate with you about everything.",
|
|
26
25
|
"title": "Just Chat"
|
|
27
26
|
},
|
package/locales/en-US/error.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"InvalidBedrockCredentials": "Bedrock authentication failed. Please check the AccessKeyId/SecretAccessKey and retry.",
|
|
46
46
|
"InvalidGoogleAPIKey": "Google API Key is incorrect or empty. Please check the Google API Key and retry.",
|
|
47
47
|
"InvalidGroqAPIKey": "Groq API Key is incorrect or empty. Please check the Groq API Key and retry.",
|
|
48
|
+
"InvalidMinimaxAPIKey": "Incorrect or empty Minimax API Key, please check the Minimax API Key and try again",
|
|
48
49
|
"InvalidMistralAPIKey": "Incorrect or empty Mistral AI API Key. Please check your Mistral API Key and try again.",
|
|
49
50
|
"InvalidMoonshotAPIKey": "The Moonshot AI API Key is incorrect or empty, please check the Moonshot API Key and try again.",
|
|
50
51
|
"InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"InvalidZeroOneAPIKey": "01-AI API Key is incorrect or empty. Please check the 01-AI API Key and retry.",
|
|
55
56
|
"InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
|
|
56
57
|
"LocationNotSupportError": "We're sorry, your current location does not support this model service. This may be due to regional restrictions or the service not being available. Please confirm if the current location supports using this service, or try using a different location.",
|
|
58
|
+
"MinimaxBizError": "Error occurred while requesting Minimax service, please troubleshoot or retry based on the following information",
|
|
57
59
|
"MistralBizError": "Error occurred while requesting Mistral AI service. Please troubleshoot based on the following information or retry.",
|
|
58
60
|
"MoonshotBizError": "There was an error with the Moonshot service, please troubleshoot or retry based on the following information.",
|
|
59
61
|
"NoOpenAIAPIKey": "OpenAI API Key is empty, please add a custom OpenAI API Key",
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
"title": "Use Custom Groq API Key"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"minimax": {
|
|
99
|
+
"title": "Minimax",
|
|
100
|
+
"token": {
|
|
101
|
+
"desc": "Enter your API Key from Minimax",
|
|
102
|
+
"placeholder": "Minimax API Key",
|
|
103
|
+
"title": "API Key"
|
|
104
|
+
},
|
|
105
|
+
"unlock": {
|
|
106
|
+
"description": "Enter your Minimax API Key to start the session. The app will not store your API Key.",
|
|
107
|
+
"title": "Use Custom Minimax API Key"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
98
110
|
"mistral": {
|
|
99
111
|
"title": "Mistral AI",
|
|
100
112
|
"token": {
|
|
@@ -4,6 +4,40 @@
|
|
|
4
4
|
"market": "Visit Market",
|
|
5
5
|
"start": "Start Now"
|
|
6
6
|
},
|
|
7
|
+
"guide": {
|
|
8
|
+
"agents": {
|
|
9
|
+
"replaceBtn": "Replace Batch",
|
|
10
|
+
"title": "New Assistant Recommendations:"
|
|
11
|
+
},
|
|
12
|
+
"defaultMessage": "I'm LobeChat, your personal intelligent assistant. How can I assist you today?\nIf you need a more professional or customized assistant, click on `+` to create a custom assistant.",
|
|
13
|
+
"qa": {
|
|
14
|
+
"q01": "What is LobeHub?",
|
|
15
|
+
"q02": "What is LobeChat?",
|
|
16
|
+
"q03": "Does LobeChat have community support?",
|
|
17
|
+
"q04": "What functions does LobeChat support?",
|
|
18
|
+
"q05": "How to deploy and use LobeChat?",
|
|
19
|
+
"q06": "What is the pricing of LobeChat?",
|
|
20
|
+
"q07": "Is LobeChat free?",
|
|
21
|
+
"q08": "Is there a cloud service version?",
|
|
22
|
+
"q09": "Does LobeChat support local language models?",
|
|
23
|
+
"q10": "Does LobeChat support image recognition and generation?",
|
|
24
|
+
"q11": "Does LobeChat support speech synthesis and speech recognition?",
|
|
25
|
+
"q12": "Does LobeChat support a plugin system?",
|
|
26
|
+
"q13": "Is there a marketplace to obtain GPTs?",
|
|
27
|
+
"q14": "Does LobeChat support multiple AI service providers?",
|
|
28
|
+
"q15": "What should I do if I encounter problems while using it?"
|
|
29
|
+
},
|
|
30
|
+
"questions": {
|
|
31
|
+
"moreBtn": "Learn More",
|
|
32
|
+
"title": "Frequently Asked Questions:"
|
|
33
|
+
},
|
|
34
|
+
"welcome": {
|
|
35
|
+
"afternoon": "Good Afternoon",
|
|
36
|
+
"morning": "Good Morning",
|
|
37
|
+
"night": "Good Evening",
|
|
38
|
+
"noon": "Good Noon"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
"header": "Welcome",
|
|
8
42
|
"pickAgent": "Or choose from the following agent templates",
|
|
9
43
|
"skip": "Skip Creation",
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"emptyAgent": "No hay asistente disponible",
|
|
22
22
|
"historyRange": "Rango de historial",
|
|
23
23
|
"inbox": {
|
|
24
|
-
"defaultMessage": "Hola, soy tu asistente virtual, puedes preguntarme cualquier cosa y haré todo lo posible para responderte. Si necesitas un asistente más profesional o personalizado, haz clic en `+` para crear un asistente personalizado.",
|
|
25
24
|
"desc": "Despierta la mente con el poder del cerebro colectivo. Tu asistente inteligente está aquí para conversar contigo sobre cualquier cosa.",
|
|
26
25
|
"title": "Charla casual"
|
|
27
26
|
},
|
package/locales/es-ES/error.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"InvalidBedrockCredentials": "La autenticación de Bedrock no se ha completado con éxito, por favor, verifica AccessKeyId/SecretAccessKey e inténtalo de nuevo",
|
|
46
46
|
"InvalidGoogleAPIKey": "La clave de API de Google es incorrecta o está vacía, por favor, verifica la clave de API de Google e inténtalo de nuevo",
|
|
47
47
|
"InvalidGroqAPIKey": "La clave de API de Groq es incorrecta o está vacía. Por favor, revisa la clave de API de Groq e inténtalo de nuevo.",
|
|
48
|
+
"InvalidMinimaxAPIKey": "Clave de API de Minimax incorrecta o vacía, por favor, revise la clave de API de Minimax e inténtelo de nuevo",
|
|
48
49
|
"InvalidMistralAPIKey": "La clave de API de Mistral AI es incorrecta o está vacía. Por favor, revise la clave de API de Mistral y vuelva a intentarlo.",
|
|
49
50
|
"InvalidMoonshotAPIKey": "La clave de API de Moonshot AI no es válida o está vacía. Por favor, revise la clave de API de Moonshot e inténtelo de nuevo.",
|
|
50
51
|
"InvalidOllamaArgs": "La configuración de Ollama no es válida, por favor revisa la configuración de Ollama e inténtalo de nuevo",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"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.",
|
|
55
56
|
"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",
|
|
56
57
|
"LocationNotSupportError": "Lo sentimos, tu ubicación actual no es compatible con este servicio de modelo, puede ser debido a restricciones geográficas o a que el servicio no está disponible. Por favor, verifica si tu ubicación actual es compatible con este servicio o intenta usar otra información de ubicación.",
|
|
58
|
+
"MinimaxBizError": "Error al solicitar el servicio Minimax, por favor, revise la siguiente información o inténtelo de nuevo",
|
|
57
59
|
"MistralBizError": "Se produjo un error al solicitar el servicio Mistral AI. Por favor, revise la siguiente información o inténtelo de nuevo.",
|
|
58
60
|
"MoonshotBizError": "Se produjo un error al solicitar el servicio de Moonshot en el lado oscuro de la luna. Por favor, revise la siguiente información o inténtelo de nuevo.",
|
|
59
61
|
"NoOpenAIAPIKey": "La clave de API de OpenAI está vacía. Agregue una clave de API de OpenAI personalizada",
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
"title": "Usar clave de API de Groq personalizada"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"minimax": {
|
|
99
|
+
"title": "Minimax",
|
|
100
|
+
"token": {
|
|
101
|
+
"desc": "Introduce tu clave API de Minimax",
|
|
102
|
+
"placeholder": "Clave API de Minimax",
|
|
103
|
+
"title": "Clave API de Minimax"
|
|
104
|
+
},
|
|
105
|
+
"unlock": {
|
|
106
|
+
"description": "Ingresa tu clave API de Minimax para comenzar la sesión. La aplicación no guardará tu clave API.",
|
|
107
|
+
"title": "Usar clave API personalizada de Minimax"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
98
110
|
"mistral": {
|
|
99
111
|
"title": "Mistral AI",
|
|
100
112
|
"token": {
|
|
@@ -4,6 +4,40 @@
|
|
|
4
4
|
"market": "Explorar el mercado",
|
|
5
5
|
"start": "Comenzar ahora"
|
|
6
6
|
},
|
|
7
|
+
"guide": {
|
|
8
|
+
"agents": {
|
|
9
|
+
"replaceBtn": "Cambiar grupo",
|
|
10
|
+
"title": "Recomendación de asistentes nuevos:"
|
|
11
|
+
},
|
|
12
|
+
"defaultMessage": "Soy LobeChat, tu asistente inteligente personal. ¿En qué puedo ayudarte hoy?\nSi necesitas un asistente más profesional o personalizado, haz clic en `+` para crear un asistente personalizado.",
|
|
13
|
+
"qa": {
|
|
14
|
+
"q01": "¿Qué es LobeHub?",
|
|
15
|
+
"q02": "¿Qué es LobeChat?",
|
|
16
|
+
"q03": "¿LobeChat tiene soporte comunitario?",
|
|
17
|
+
"q04": "¿Qué funciones admite LobeChat?",
|
|
18
|
+
"q05": "¿Cómo se despliega y utiliza LobeChat?",
|
|
19
|
+
"q06": "¿Cuál es la estructura de precios de LobeChat?",
|
|
20
|
+
"q07": "¿LobeChat es gratuito?",
|
|
21
|
+
"q08": "¿Hay una versión de servicio en la nube?",
|
|
22
|
+
"q09": "¿Admite modelos de lenguaje locales?",
|
|
23
|
+
"q10": "¿Admite reconocimiento y generación de imágenes?",
|
|
24
|
+
"q11": "¿Admite síntesis de voz y reconocimiento de voz?",
|
|
25
|
+
"q12": "¿Admite un sistema de complementos?",
|
|
26
|
+
"q13": "¿Tiene su propio mercado para obtener GPTs?",
|
|
27
|
+
"q14": "¿Admite varios proveedores de servicios de IA?",
|
|
28
|
+
"q15": "¿Qué debo hacer si encuentro problemas al usarlo?"
|
|
29
|
+
},
|
|
30
|
+
"questions": {
|
|
31
|
+
"moreBtn": "Saber más",
|
|
32
|
+
"title": "Preguntas frecuentes:"
|
|
33
|
+
},
|
|
34
|
+
"welcome": {
|
|
35
|
+
"afternoon": "Buenas tardes",
|
|
36
|
+
"morning": "Buenos días",
|
|
37
|
+
"night": "Buenas noches",
|
|
38
|
+
"noon": "Buen mediodía"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
"header": "Bienvenido/a",
|
|
8
42
|
"pickAgent": "O elige una plantilla de asistente a continuación",
|
|
9
43
|
"skip": "Saltar",
|