@lobehub/chat 0.150.10 → 0.151.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.
Files changed (74) hide show
  1. package/.env.example +3 -0
  2. package/CHANGELOG.md +25 -0
  3. package/Dockerfile +3 -0
  4. package/README.md +1 -0
  5. package/README.zh-CN.md +1 -0
  6. package/docs/self-hosting/environment-variables/model-provider.mdx +9 -0
  7. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +9 -0
  8. package/docs/usage/features/multi-ai-providers.mdx +1 -0
  9. package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
  10. package/locales/ar/error.json +2 -0
  11. package/locales/ar/modelProvider.json +12 -0
  12. package/locales/bg-BG/error.json +2 -0
  13. package/locales/bg-BG/modelProvider.json +12 -0
  14. package/locales/de-DE/error.json +2 -0
  15. package/locales/de-DE/modelProvider.json +12 -0
  16. package/locales/en-US/error.json +2 -0
  17. package/locales/en-US/modelProvider.json +12 -0
  18. package/locales/es-ES/error.json +2 -0
  19. package/locales/es-ES/modelProvider.json +12 -0
  20. package/locales/fr-FR/error.json +2 -0
  21. package/locales/fr-FR/modelProvider.json +12 -0
  22. package/locales/it-IT/error.json +2 -0
  23. package/locales/it-IT/modelProvider.json +12 -0
  24. package/locales/ja-JP/error.json +2 -0
  25. package/locales/ja-JP/modelProvider.json +12 -0
  26. package/locales/ko-KR/error.json +2 -0
  27. package/locales/ko-KR/modelProvider.json +12 -0
  28. package/locales/nl-NL/error.json +2 -0
  29. package/locales/nl-NL/modelProvider.json +12 -0
  30. package/locales/pl-PL/error.json +2 -0
  31. package/locales/pl-PL/modelProvider.json +12 -0
  32. package/locales/pt-BR/error.json +2 -0
  33. package/locales/pt-BR/modelProvider.json +12 -0
  34. package/locales/ru-RU/error.json +2 -0
  35. package/locales/ru-RU/modelProvider.json +12 -0
  36. package/locales/tr-TR/error.json +2 -0
  37. package/locales/tr-TR/modelProvider.json +12 -0
  38. package/locales/vi-VN/error.json +2 -0
  39. package/locales/vi-VN/modelProvider.json +12 -0
  40. package/locales/zh-CN/error.json +2 -0
  41. package/locales/zh-CN/modelProvider.json +12 -0
  42. package/locales/zh-TW/error.json +2 -0
  43. package/locales/zh-TW/modelProvider.json +12 -0
  44. package/package.json +1 -1
  45. package/src/app/api/chat/agentRuntime.test.ts +17 -0
  46. package/src/app/api/chat/agentRuntime.ts +7 -0
  47. package/src/app/api/chat/minimax/route.test.ts +24 -0
  48. package/src/app/api/chat/minimax/route.ts +5 -0
  49. package/src/app/api/errorResponse.test.ts +6 -0
  50. package/src/app/api/errorResponse.ts +3 -0
  51. package/src/app/settings/llm/Minimax/index.tsx +26 -0
  52. package/src/app/settings/llm/index.tsx +2 -0
  53. package/src/app/settings/sync/components/SystemIcon.tsx +0 -1
  54. package/src/components/ModelIcon/index.tsx +7 -17
  55. package/src/components/ModelProviderIcon/index.tsx +5 -0
  56. package/src/components/ModelTag/ModelIcon.tsx +1 -0
  57. package/src/config/modelProviders/index.ts +4 -0
  58. package/src/config/modelProviders/minimax.ts +30 -0
  59. package/src/config/server/provider.ts +9 -0
  60. package/src/const/settings/index.ts +6 -0
  61. package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +5 -0
  62. package/src/features/Conversation/Error/index.tsx +1 -0
  63. package/src/libs/agent-runtime/AgentRuntime.ts +7 -0
  64. package/src/libs/agent-runtime/error.ts +3 -0
  65. package/src/libs/agent-runtime/index.ts +1 -0
  66. package/src/libs/agent-runtime/minimax/index.test.ts +261 -0
  67. package/src/libs/agent-runtime/minimax/index.ts +185 -0
  68. package/src/libs/agent-runtime/togetherai/type.ts +0 -1
  69. package/src/libs/agent-runtime/types/type.ts +1 -0
  70. package/src/locales/default/error.ts +3 -0
  71. package/src/locales/default/modelProvider.ts +12 -0
  72. package/src/migrations/FromV3ToV4/types/v3.ts +1 -0
  73. package/src/store/user/slices/settings/actions/llm.ts +2 -0
  74. 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,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 0.151.0](https://github.com/lobehub/lobe-chat/compare/v0.150.10...v0.151.0)
6
+
7
+ <sup>Released on **2024-04-29**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Support minimax as a new provider.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **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))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 0.150.10](https://github.com/lobehub/lobe-chat/compare/v0.150.9...v0.150.10)
6
31
 
7
32
  <sup>Released on **2024-04-28**</sup>
package/Dockerfile CHANGED
@@ -103,4 +103,7 @@ ENV ZEROONE_API_KEY ""
103
103
  # TogetherAI
104
104
  ENV TOGETHERAI_API_KEY ""
105
105
 
106
+ # Minimax
107
+ ENV MINIMAX_API_KEY ""
108
+
106
109
  CMD ["node", "server.js"]
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
 
@@ -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": {
@@ -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": {
@@ -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": {
@@ -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": {
@@ -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": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "L'authentification Bedrock a échoué, veuillez vérifier AccessKeyId/SecretAccessKey et réessayer",
46
46
  "InvalidGoogleAPIKey": "Clé API Google incorrecte ou vide, veuillez vérifier la clé API Google et réessayer",
47
47
  "InvalidGroqAPIKey": "Clé API Groq incorrecte ou vide, veuillez vérifier la clé API Groq et réessayer",
48
+ "InvalidMinimaxAPIKey": "Clé API Minimax incorrecte ou vide, veuillez vérifier la clé API Minimax et réessayer",
48
49
  "InvalidMistralAPIKey": "Clé API Mistral AI incorrecte ou manquante. Veuillez vérifier la clé API Mistral et réessayer.",
49
50
  "InvalidMoonshotAPIKey": "Clé API Moonshot AI incorrecte ou manquante. Veuillez vérifier la clé API Moonshot et réessayer.",
50
51
  "InvalidOllamaArgs": "La configuration d'Ollama n'est pas valide, veuillez vérifier la configuration d'Ollama et réessayer",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "La clé d'API ZeroOne est incorrecte ou vide, veuillez vérifier la clé d'API ZeroOne et réessayer",
55
56
  "InvalidZhipuAPIKey": "Clé API Zhipu incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
56
57
  "LocationNotSupportError": "Désolé, votre emplacement actuel ne prend pas en charge ce service de modèle, peut-être en raison de restrictions géographiques ou de services non disponibles. Veuillez vérifier si votre emplacement actuel prend en charge ce service ou essayer avec une autre localisation.",
58
+ "MinimaxBizError": "Erreur de service Minimax, veuillez vérifier les informations suivantes ou réessayer",
57
59
  "MistralBizError": "Erreur de service Mistral AI. Veuillez vérifier les informations ci-dessous ou réessayer.",
58
60
  "MoonshotBizError": "Erreur de service Moonshot : une erreur s'est produite lors de la demande du service Côté Obscur de la Lune. Veuillez vérifier les informations suivantes ou réessayer.",
59
61
  "NoOpenAIAPIKey": "La clé API OpenAI est vide. Veuillez ajouter une clé API OpenAI personnalisée",
@@ -95,6 +95,18 @@
95
95
  "title": "Utiliser une clé API Groq personnalisée"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "Minimax",
100
+ "token": {
101
+ "desc": "Entrez la clé API de Minimax",
102
+ "placeholder": "Clé API Minimax",
103
+ "title": "Clé API"
104
+ },
105
+ "unlock": {
106
+ "description": "Entrez votre clé API Minimax pour commencer la session. L'application ne stockera pas votre clé API.",
107
+ "title": "Utiliser une clé API Minimax personnalisée"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "Autenticazione Bedrock non riuscita, controlla AccessKeyId/SecretAccessKey e riprova",
46
46
  "InvalidGoogleAPIKey": "Chiave API Google non corretta o vuota, controlla la chiave API Google e riprova",
47
47
  "InvalidGroqAPIKey": "Chiave API Groq non valida o vuota, controlla la chiave API Groq e riprova",
48
+ "InvalidMinimaxAPIKey": "Chiave API Minimax non valida o vuota, controllare la chiave API Minimax e riprovare",
48
49
  "InvalidMistralAPIKey": "Chiave API Mistral AI non valida o vuota. Si prega di controllare la chiave API Mistral e riprovare.",
49
50
  "InvalidMoonshotAPIKey": "La chiave API di Moonshot AI non è corretta o è vuota, si prega di controllare la chiave API di Moonshot e riprovare",
50
51
  "InvalidOllamaArgs": "Configurazione Ollama non valida, controllare la configurazione di Ollama e riprovare",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "La chiave API ZeroOne non è corretta o è vuota, si prega di controllare la chiave API ZeroOne e riprovare",
55
56
  "InvalidZhipuAPIKey": "Chiave API Zhipu non corretta o vuota, controlla la chiave API Zhipu e riprova",
56
57
  "LocationNotSupportError": "Spiacenti, la tua posizione attuale non supporta questo servizio modello, potrebbe essere a causa di restrizioni geografiche o servizi non attivati. Verifica se la posizione attuale supporta l'uso di questo servizio o prova a utilizzare un'altra posizione.",
58
+ "MinimaxBizError": "Errore di servizio Minimax, controllare le informazioni seguenti o riprovare",
57
59
  "MistralBizError": "Errore di richiesta del servizio Mistral AI. Si prega di controllare le informazioni seguenti o riprovare.",
58
60
  "MoonshotBizError": "Si è verificato un errore nel servizio Moonshot, si prega di controllare le informazioni seguenti o riprovare",
59
61
  "NoOpenAIAPIKey": "La chiave API OpenAI è vuota. Aggiungi una chiave API personalizzata OpenAI",
@@ -95,6 +95,18 @@
95
95
  "title": "Usa una chiave API Groq personalizzata"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "Minimax",
100
+ "token": {
101
+ "desc": "Inserisci la tua chiave API Minimax",
102
+ "placeholder": "Chiave API Minimax",
103
+ "title": "Chiave API"
104
+ },
105
+ "unlock": {
106
+ "description": "Inserisci la tua chiave API Minimax per avviare la sessione. L'applicazione non memorizzerà la tua chiave API.",
107
+ "title": "Utilizza una chiave API Minimax personalizzata"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -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": "Moonshot AI APIキーが正しくないか空です。Moonshot APIキーを確認して再試行してください。",
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": "OpenAI APIキーが空です。カスタムOpenAI APIキーを追加してください。",
@@ -95,6 +95,18 @@
95
95
  "title": "使用カスタム Groq API Key"
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": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "Bedrock 인증에 실패했습니다. AccessKeyId/SecretAccessKey를 확인한 후 다시 시도하십시오.",
46
46
  "InvalidGoogleAPIKey": "잘못된 또는 비어 있는 Google API Key입니다. Google API Key를 확인한 후 다시 시도하십시오.",
47
47
  "InvalidGroqAPIKey": "잘못된 또는 비어 있는 Groq API Key입니다. Groq API Key를 확인한 후 다시 시도하십시오.",
48
+ "InvalidMinimaxAPIKey": "잘못된 Minimax API 키이거나 비어 있습니다. Minimax API 키를 확인한 후 다시 시도해주세요.",
48
49
  "InvalidMistralAPIKey": "Mistral AI API 키가 잘못되었거나 비어 있습니다. Mistral API 키를 확인한 후 다시 시도해주세요.",
49
50
  "InvalidMoonshotAPIKey": "Moonshot AI API 키가 잘못되었거나 비어 있습니다. Moonshot API 키를 확인한 후 다시 시도해주세요.",
50
51
  "InvalidOllamaArgs": "Ollama 구성이 잘못되었습니다. Ollama 구성을 확인한 후 다시 시도하십시오.",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "잘못된 또는 빈 제로원물 API 키입니다. 제로원물 API 키를 확인하고 다시 시도해주세요.",
55
56
  "InvalidZhipuAPIKey": "잘못된 또는 비어 있는 Zhipu API Key입니다. Zhipu API Key를 확인한 후 다시 시도하십시오.",
56
57
  "LocationNotSupportError": "죄송합니다. 귀하의 현재 위치는 해당 모델 서비스를 지원하지 않습니다. 지역 제한 또는 서비스 미개통으로 인한 것일 수 있습니다. 현재 위치가 해당 서비스를 지원하는지 확인하거나 다른 위치 정보를 사용해 보십시오.",
58
+ "MinimaxBizError": "Minimax 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하거나 다시 시도해주세요.",
57
59
  "MistralBizError": "Mistral AI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
58
60
  "MoonshotBizError": "요청한 문샷 비즈니스에 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
59
61
  "NoOpenAIAPIKey": "OpenAI API 키가 비어 있습니다. 사용자 정의 OpenAI API 키를 추가해주세요.",
@@ -95,6 +95,18 @@
95
95
  "title": "사용자 정의 Groq API 키 사용"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "최소화",
100
+ "token": {
101
+ "desc": "Minimax에서 가져온 API 키를 입력하십시오",
102
+ "placeholder": "Minimax API 키",
103
+ "title": "API 키"
104
+ },
105
+ "unlock": {
106
+ "description": "Minimax API 키를 입력하면 세션을 시작할 수 있습니다. 애플리케이션은 API 키를 기록하지 않습니다",
107
+ "title": "사용자 정의 Minimax API 키 사용"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "Bedrock authentication failed, please check AccessKeyId/SecretAccessKey and retry",
46
46
  "InvalidGoogleAPIKey": "Incorrect or empty Google API Key, please check the Google API Key and retry",
47
47
  "InvalidGroqAPIKey": "Groq API Key is onjuist of leeg. Controleer de Groq API Key en probeer het opnieuw.",
48
+ "InvalidMinimaxAPIKey": "Ongeldige of lege Minimax API-sleutel. Controleer de Minimax API-sleutel en probeer het opnieuw.",
48
49
  "InvalidMistralAPIKey": "Ongeldige of lege Mistral AI API-sleutel. Controleer de Mistral API-sleutel en probeer het opnieuw.",
49
50
  "InvalidMoonshotAPIKey": "Moonshot AI API密钥不正确或为空,请检查Moonshot API密钥后重试",
50
51
  "InvalidOllamaArgs": "Ollama-configuratie is onjuist, controleer de Ollama-configuratie en probeer het opnieuw",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "Ongeldige ZeroOneAPI-sleutel of leeg, controleer de ZeroOneAPI-sleutel en probeer het opnieuw",
55
56
  "InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
56
57
  "LocationNotSupportError": "Sorry, your current location does not support this model service, possibly due to regional restrictions or service not being available. Please confirm if the current location supports using this service, or try using other location information.",
58
+ "MinimaxBizError": "Er is een fout opgetreden bij het aanroepen van de Minimax-service. Controleer de volgende informatie of probeer het opnieuw.",
57
59
  "MistralBizError": "Er is een fout opgetreden bij het aanroepen van de Mistral AI-service. Controleer de onderstaande informatie of probeer het opnieuw.",
58
60
  "MoonshotBizError": "Er is een fout opgetreden bij het aanroepen van de Moonshot-service. Controleer de volgende informatie of probeer het opnieuw.",
59
61
  "NoOpenAIAPIKey": "OpenAI API-sleutel ontbreekt. Voeg een aangepaste OpenAI API-sleutel toe",
@@ -95,6 +95,18 @@
95
95
  "title": "Gebruik aangepaste Groq API-sleutel"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "Minimax",
100
+ "token": {
101
+ "desc": "Voer de API Key van Minimax AI in",
102
+ "placeholder": "Minimax API Key",
103
+ "title": "API Key"
104
+ },
105
+ "unlock": {
106
+ "description": "Voer uw Minimax AI API-sleutel in om een sessie te starten. De app zal uw API-sleutel niet opslaan",
107
+ "title": "Gebruik aangepaste Minimax AI API-sleutel"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "Uwierzytelnienie Bedrock nie powiodło się, prosimy sprawdzić AccessKeyId/SecretAccessKey i spróbować ponownie.",
46
46
  "InvalidGoogleAPIKey": "Nieprawidłowy lub pusty klucz API Google, prosimy sprawdzić klucz API Google i spróbować ponownie.",
47
47
  "InvalidGroqAPIKey": "Nieprawidłowy klucz API Groq, prosimy sprawdzić klucz API Groq i spróbować ponownie.",
48
+ "InvalidMinimaxAPIKey": "Nieprawidłowy lub pusty klucz API Minimax, proszę sprawdzić klucz API Minimax i spróbować ponownie",
48
49
  "InvalidMistralAPIKey": "Nieprawidłowy lub pusty klucz API Mistral AI. Proszę sprawdzić klucz API Mistral i spróbować ponownie.",
49
50
  "InvalidMoonshotAPIKey": "Nieprawidłowy lub pusty klucz API Moonshot AI. Proszę sprawdzić klucz API Moonshot i spróbować ponownie.",
50
51
  "InvalidOllamaArgs": "Nieprawidłowa konfiguracja Ollama, sprawdź konfigurację Ollama i spróbuj ponownie",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "Klucz API Zero One nieprawidłowy lub pusty, sprawdź poprawność klucza API Zero One i spróbuj ponownie",
55
56
  "InvalidZhipuAPIKey": "Nieprawidłowy lub pusty klucz API Zhipu, prosimy sprawdzić klucz API Zhipu i spróbować ponownie.",
56
57
  "LocationNotSupportError": "Przepraszamy, Twoja lokalizacja nie obsługuje tego usługi modelu, być może ze względu na ograniczenia regionalne lub brak dostępności usługi. Proszę sprawdź, czy bieżąca lokalizacja obsługuje tę usługę, lub spróbuj użyć innych informacji o lokalizacji.",
58
+ "MinimaxBizError": "Wystąpił błąd usługi Minimax, proszę sprawdzić poniższe informacje lub spróbować ponownie",
57
59
  "MistralBizError": "Wystąpił błąd żądania usługi Mistral AI. Proszę sprawdzić poniższe informacje lub spróbować ponownie.",
58
60
  "MoonshotBizError": "Wystąpił błąd żądania usługi Moonshot AI. Proszę sprawdzić poniższe informacje lub spróbować ponownie.",
59
61
  "NoOpenAIAPIKey": "Klucz API OpenAI jest pusty. Proszę dodać niestandardowy klucz API OpenAI",
@@ -95,6 +95,18 @@
95
95
  "title": "Użyj niestandardowego klucza API Groq"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "Minimax",
100
+ "token": {
101
+ "desc": "Wprowadź klucz API Minimax",
102
+ "placeholder": "Klucz API Minimax",
103
+ "title": "Klucz API"
104
+ },
105
+ "unlock": {
106
+ "description": "Wprowadź swój klucz API Minimax, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
107
+ "title": "Użyj niestandardowego klucza API Minimax"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -45,6 +45,7 @@
45
45
  "InvalidBedrockCredentials": "Credenciais Bedrock inválidas, por favor, verifique AccessKeyId/SecretAccessKey e tente novamente",
46
46
  "InvalidGoogleAPIKey": "Chave de API Google incorreta ou vazia, por favor, verifique a chave de API Google e tente novamente",
47
47
  "InvalidGroqAPIKey": "Chave de API Groq AI inválida ou em branco, verifique a chave de API Groq e tente novamente",
48
+ "InvalidMinimaxAPIKey": "Chave de API Minimax inválida ou em branco, verifique a chave de API Minimax e tente novamente",
48
49
  "InvalidMistralAPIKey": "Chave de API Mistral AI inválida ou vazia. Por favor, verifique a chave de API Mistral e tente novamente.",
49
50
  "InvalidMoonshotAPIKey": "A chave da API Moonshot AI está incorreta ou vazia. Por favor, verifique a chave da API Moonshot e tente novamente.",
50
51
  "InvalidOllamaArgs": "Configuração Ollama inválida, verifique a configuração do Ollama e tente novamente",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "Chave de API ZeroOne inválida ou vazia, verifique a chave de API ZeroOne e tente novamente",
55
56
  "InvalidZhipuAPIKey": "Chave de API Zhipu incorreta ou vazia, por favor, verifique a chave de API Zhipu e tente novamente",
56
57
  "LocationNotSupportError": "Desculpe, sua localização atual não suporta este serviço de modelo, pode ser devido a restrições geográficas ou serviço não disponível. Por favor, verifique se a localização atual suporta o uso deste serviço ou tente usar outras informações de localização.",
58
+ "MinimaxBizError": "Erro no serviço Minimax, verifique as informações abaixo ou tente novamente",
57
59
  "MistralBizError": "Ocorreu um erro ao solicitar o serviço Mistral AI. Por favor, verifique as informações abaixo ou tente novamente.",
58
60
  "MoonshotBizError": "O serviço Moonshot na face oculta da lua encontrou um erro. Por favor, verifique as informações abaixo ou tente novamente.",
59
61
  "NoOpenAIAPIKey": "A chave de API do OpenAI está em branco. Adicione uma chave de API personalizada do OpenAI",
@@ -95,6 +95,18 @@
95
95
  "title": "Usar chave de API Groq personalizada"
96
96
  }
97
97
  },
98
+ "minimax": {
99
+ "title": "Minimax",
100
+ "token": {
101
+ "desc": "Insira a chave da API do Minimax",
102
+ "placeholder": "Chave da API do Minimax",
103
+ "title": "Chave da API"
104
+ },
105
+ "unlock": {
106
+ "description": "Digite sua chave da API do Minimax para iniciar a sessão. O aplicativo não irá armazenar sua chave da API.",
107
+ "title": "Usar chave da API personalizada do Minimax"
108
+ }
109
+ },
98
110
  "mistral": {
99
111
  "title": "Mistral AI",
100
112
  "token": {
@@ -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": "Moonshot AI API Key неверный или пустой, пожалуйста, проверьте ключ API Moonshot и повторите попытку",
50
51
  "InvalidOllamaArgs": "Неверная конфигурация Ollama, пожалуйста, проверьте конфигурацию Ollama и повторите попытку",
@@ -54,6 +55,7 @@
54
55
  "InvalidZeroOneAPIKey": "Неверный или пустой ключ API ZeroOne. Пожалуйста, проверьте ключ API ZeroOne и повторите попытку",
55
56
  "InvalidZhipuAPIKey": "Неверный или пустой ключ API Zhipu, пожалуйста, проверьте ключ API Zhipu и повторите попытку",
56
57
  "LocationNotSupportError": "Извините, ваше текущее местоположение не поддерживает эту службу модели, возможно из-за ограничений региона или недоступности службы. Пожалуйста, убедитесь, что текущее местоположение поддерживает использование этой службы, или попробуйте использовать другую информацию о местоположении.",
58
+ "MinimaxBizError": "Ошибка обслуживания Minimax. Пожалуйста, проверьте информацию ниже или повторите попытку",
57
59
  "MistralBizError": "Ошибка запроса к службе Mistral AI. Пожалуйста, проверьте следующую информацию или повторите попытку",
58
60
  "MoonshotBizError": "请求月球暗面服务出错,请根据以下信息排查或重试",
59
61
  "NoOpenAIAPIKey": "Ключ OpenAI API пуст, пожалуйста, добавьте свой собственный ключ OpenAI API",