@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.
Files changed (122) hide show
  1. package/.env.example +3 -0
  2. package/CHANGELOG.md +50 -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/chat.json +2 -3
  11. package/locales/ar/error.json +2 -0
  12. package/locales/ar/modelProvider.json +12 -0
  13. package/locales/ar/welcome.json +34 -0
  14. package/locales/bg-BG/chat.json +2 -3
  15. package/locales/bg-BG/error.json +2 -0
  16. package/locales/bg-BG/modelProvider.json +12 -0
  17. package/locales/bg-BG/welcome.json +34 -0
  18. package/locales/de-DE/chat.json +0 -1
  19. package/locales/de-DE/error.json +2 -0
  20. package/locales/de-DE/modelProvider.json +12 -0
  21. package/locales/de-DE/welcome.json +34 -0
  22. package/locales/en-US/chat.json +0 -1
  23. package/locales/en-US/error.json +2 -0
  24. package/locales/en-US/modelProvider.json +12 -0
  25. package/locales/en-US/welcome.json +34 -0
  26. package/locales/es-ES/chat.json +0 -1
  27. package/locales/es-ES/error.json +2 -0
  28. package/locales/es-ES/modelProvider.json +12 -0
  29. package/locales/es-ES/welcome.json +34 -0
  30. package/locales/fr-FR/chat.json +0 -1
  31. package/locales/fr-FR/error.json +2 -0
  32. package/locales/fr-FR/modelProvider.json +12 -0
  33. package/locales/fr-FR/welcome.json +34 -0
  34. package/locales/it-IT/chat.json +0 -1
  35. package/locales/it-IT/error.json +2 -0
  36. package/locales/it-IT/modelProvider.json +12 -0
  37. package/locales/it-IT/welcome.json +34 -0
  38. package/locales/ja-JP/chat.json +0 -1
  39. package/locales/ja-JP/error.json +2 -0
  40. package/locales/ja-JP/modelProvider.json +12 -0
  41. package/locales/ja-JP/welcome.json +35 -1
  42. package/locales/ko-KR/chat.json +0 -1
  43. package/locales/ko-KR/error.json +2 -0
  44. package/locales/ko-KR/modelProvider.json +12 -0
  45. package/locales/ko-KR/welcome.json +34 -0
  46. package/locales/nl-NL/chat.json +3 -4
  47. package/locales/nl-NL/error.json +2 -0
  48. package/locales/nl-NL/modelProvider.json +12 -0
  49. package/locales/nl-NL/welcome.json +34 -0
  50. package/locales/pl-PL/chat.json +2 -3
  51. package/locales/pl-PL/error.json +2 -0
  52. package/locales/pl-PL/modelProvider.json +12 -0
  53. package/locales/pl-PL/welcome.json +34 -0
  54. package/locales/pt-BR/chat.json +0 -1
  55. package/locales/pt-BR/error.json +2 -0
  56. package/locales/pt-BR/modelProvider.json +12 -0
  57. package/locales/pt-BR/welcome.json +34 -0
  58. package/locales/ru-RU/chat.json +0 -1
  59. package/locales/ru-RU/error.json +2 -0
  60. package/locales/ru-RU/modelProvider.json +12 -0
  61. package/locales/ru-RU/welcome.json +34 -0
  62. package/locales/tr-TR/chat.json +1 -2
  63. package/locales/tr-TR/error.json +2 -0
  64. package/locales/tr-TR/modelProvider.json +12 -0
  65. package/locales/tr-TR/welcome.json +34 -0
  66. package/locales/vi-VN/chat.json +0 -1
  67. package/locales/vi-VN/error.json +2 -0
  68. package/locales/vi-VN/modelProvider.json +12 -0
  69. package/locales/vi-VN/welcome.json +34 -0
  70. package/locales/zh-CN/chat.json +0 -1
  71. package/locales/zh-CN/error.json +2 -0
  72. package/locales/zh-CN/modelProvider.json +12 -0
  73. package/locales/zh-CN/welcome.json +34 -0
  74. package/locales/zh-TW/chat.json +0 -1
  75. package/locales/zh-TW/error.json +2 -0
  76. package/locales/zh-TW/modelProvider.json +12 -0
  77. package/locales/zh-TW/welcome.json +34 -0
  78. package/package.json +1 -1
  79. package/src/app/api/chat/agentRuntime.test.ts +17 -0
  80. package/src/app/api/chat/agentRuntime.ts +7 -0
  81. package/src/app/api/chat/minimax/route.test.ts +24 -0
  82. package/src/app/api/chat/minimax/route.ts +5 -0
  83. package/src/app/api/errorResponse.test.ts +6 -0
  84. package/src/app/api/errorResponse.ts +3 -0
  85. package/src/app/chat/features/Migration/Failed.tsx +2 -1
  86. package/src/app/settings/llm/Minimax/index.tsx +26 -0
  87. package/src/app/settings/llm/index.tsx +2 -0
  88. package/src/app/settings/sync/components/SystemIcon.tsx +0 -1
  89. package/src/components/ModelIcon/index.tsx +7 -17
  90. package/src/components/ModelProviderIcon/index.tsx +5 -0
  91. package/src/components/ModelTag/ModelIcon.tsx +1 -0
  92. package/src/config/client.ts +0 -5
  93. package/src/config/modelProviders/index.ts +4 -0
  94. package/src/config/modelProviders/minimax.ts +30 -0
  95. package/src/config/server/provider.ts +9 -0
  96. package/src/const/guide.ts +86 -0
  97. package/src/const/settings/index.ts +6 -0
  98. package/src/const/url.ts +15 -8
  99. package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +5 -0
  100. package/src/features/Conversation/Error/index.tsx +1 -0
  101. package/src/features/Conversation/components/InboxWelcome/AgentsSuggest.tsx +108 -0
  102. package/src/features/Conversation/components/InboxWelcome/QuestionSuggest.tsx +99 -0
  103. package/src/features/Conversation/components/InboxWelcome/index.tsx +76 -0
  104. package/src/features/Conversation/components/VirtualizedList/index.tsx +11 -4
  105. package/src/layout/GlobalProvider/AppTheme.tsx +2 -1
  106. package/src/libs/agent-runtime/AgentRuntime.ts +7 -0
  107. package/src/libs/agent-runtime/error.ts +3 -0
  108. package/src/libs/agent-runtime/index.ts +1 -0
  109. package/src/libs/agent-runtime/minimax/index.test.ts +261 -0
  110. package/src/libs/agent-runtime/minimax/index.ts +185 -0
  111. package/src/libs/agent-runtime/togetherai/type.ts +0 -1
  112. package/src/libs/agent-runtime/types/type.ts +1 -0
  113. package/src/locales/default/chat.ts +0 -2
  114. package/src/locales/default/error.ts +3 -0
  115. package/src/locales/default/modelProvider.ts +12 -0
  116. package/src/locales/default/welcome.ts +35 -0
  117. package/src/migrations/FromV3ToV4/types/v3.ts +1 -0
  118. package/src/services/chat.ts +44 -25
  119. package/src/store/chat/slices/message/selectors.test.ts +27 -1
  120. package/src/store/chat/slices/message/selectors.ts +11 -1
  121. package/src/store/user/slices/settings/actions/llm.ts +2 -0
  122. package/src/types/settings/modelProvider.ts +1 -0
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "Aucun assistant disponible",
22
22
  "historyRange": "Plage d'historique",
23
23
  "inbox": {
24
- "defaultMessage": "Bonjour, je suis votre agent virtuel. Vous pouvez me poser n'importe quelle question et je ferai de mon mieux pour vous répondre. Si vous avez besoin d'un agent plus professionnel ou personnalisé, cliquez sur le `+` pour créer un agent personnalisé.",
25
24
  "desc": "Débloquez le potentiel de votre esprit. Votre agent intelligent est là pour discuter avec vous de tout et de rien.",
26
25
  "title": "Discutons un peu"
27
26
  },
@@ -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": {
@@ -4,6 +4,40 @@
4
4
  "market": "Parcourir le marché",
5
5
  "start": "Démarrer maintenant"
6
6
  },
7
+ "guide": {
8
+ "agents": {
9
+ "replaceBtn": "Remplacer",
10
+ "title": "Nouvelles recommandations d'assistants :"
11
+ },
12
+ "defaultMessage": "Je suis LobeChat, votre assistant intelligent personnel. Comment puis-je vous aider aujourd'hui ?\nSi vous avez besoin d'une assistance plus professionnelle ou personnalisée, cliquez sur `+` pour créer un assistant personnalisé.",
13
+ "qa": {
14
+ "q01": "Qu'est-ce que LobeHub ?",
15
+ "q02": "Qu'est-ce que LobeChat ?",
16
+ "q03": "LobeChat a-t-il un support communautaire ?",
17
+ "q04": "Quelles sont les fonctionnalités prises en charge par LobeChat ?",
18
+ "q05": "Comment déployer et utiliser LobeChat ?",
19
+ "q06": "Quelle est la tarification de LobeChat ?",
20
+ "q07": "LobeChat est-il gratuit ?",
21
+ "q08": "Y a-t-il une version cloud de service ?",
22
+ "q09": "Prend-il en charge les modèles de langage locaux ?",
23
+ "q10": "Prend-il en charge la reconnaissance et la génération d'images ?",
24
+ "q11": "Prend-il en charge la synthèse vocale et la reconnaissance vocale ?",
25
+ "q12": "Prend-il en charge un système de plugins ?",
26
+ "q13": "A-t-il son propre marché pour obtenir des GPTs ?",
27
+ "q14": "Prend-il en charge plusieurs fournisseurs de services d'IA ?",
28
+ "q15": "Que faire si je rencontre des problèmes lors de l'utilisation ?"
29
+ },
30
+ "questions": {
31
+ "moreBtn": "En savoir plus",
32
+ "title": "Questions fréquentes :"
33
+ },
34
+ "welcome": {
35
+ "afternoon": "Bon après-midi",
36
+ "morning": "Bonjour",
37
+ "night": "Bonsoir",
38
+ "noon": "Bonjour"
39
+ }
40
+ },
7
41
  "header": "Bienvenue",
8
42
  "pickAgent": "Ou choisissez parmi les modèles d'agent suivants",
9
43
  "skip": "Passer",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "Nessun assistente disponibile",
22
22
  "historyRange": "Intervallo cronologico",
23
23
  "inbox": {
24
- "defaultMessage": "Ciao, sono il tuo assistente virtuale, puoi chiedermi qualsiasi cosa e farò del mio meglio per risponderti. Se hai bisogno di un assistente più professionale o personalizzato, clicca su `+` per creare un assistente personalizzato.",
25
24
  "desc": "Attiva il cluster cerebrale, accendi la scintilla del pensiero. Il tuo assistente intelligente, qui per comunicare con te su tutto.",
26
25
  "title": "Chiacchierata casuale"
27
26
  },
@@ -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": {
@@ -4,6 +4,40 @@
4
4
  "market": "Esplora il mercato",
5
5
  "start": "Inizia subito"
6
6
  },
7
+ "guide": {
8
+ "agents": {
9
+ "replaceBtn": "Cambia gruppo",
10
+ "title": "Nuova raccomandazione assistente:"
11
+ },
12
+ "defaultMessage": "Sono LobeChat, il tuo assistente intelligente personale. Come posso aiutarti oggi?\nSe hai bisogno di un assistente più professionale o personalizzato, clicca su `+` per creare un assistente personalizzato.",
13
+ "qa": {
14
+ "q01": "Cos'è LobeHub?",
15
+ "q02": "Cos'è LobeChat?",
16
+ "q03": "LobeChat ha supporto comunitario?",
17
+ "q04": "Quali funzionalità supporta LobeChat?",
18
+ "q05": "Come fare il deploy e utilizzare LobeChat?",
19
+ "q06": "Quali sono i prezzi di LobeChat?",
20
+ "q07": "LobeChat è gratuito?",
21
+ "q08": "C'è una versione cloud?",
22
+ "q09": "Supporta modelli linguistici locali?",
23
+ "q10": "Supporta riconoscimento e generazione di immagini?",
24
+ "q11": "Supporta sintesi vocale e riconoscimento vocale?",
25
+ "q12": "Supporta un sistema di plugin?",
26
+ "q13": "Ha un proprio mercato per ottenere GPTs?",
27
+ "q14": "Supporta vari fornitori di servizi AI?",
28
+ "q15": "Cosa fare se riscontro problemi durante l'uso?"
29
+ },
30
+ "questions": {
31
+ "moreBtn": "Scopri di più",
32
+ "title": "Domande frequenti:"
33
+ },
34
+ "welcome": {
35
+ "afternoon": "Buon pomeriggio",
36
+ "morning": "Buongiorno",
37
+ "night": "Buonasera",
38
+ "noon": "Buon pranzo"
39
+ }
40
+ },
7
41
  "header": "Benvenuti",
8
42
  "pickAgent": "Oppure scegli tra i seguenti modelli di assistente",
9
43
  "skip": "Salta creazione",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "エージェントがいません",
22
22
  "historyRange": "履歴範囲",
23
23
  "inbox": {
24
- "defaultMessage": "こんにちは、私はあなたのスマートアシスタントです。何か質問があれば遠慮なく聞いてください。より専門的でカスタマイズされたアシスタントが必要な場合は、`+` をクリックしてカスタムエージェントを作成できます。",
25
24
  "desc": "脳のクラスターを起動し、創造性を引き出しましょう。あなたのスマートアシスタントは、あなたとすべてのことについてここでコミュニケーションします。",
26
25
  "title": "気軽におしゃべり"
27
26
  },
@@ -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": {
@@ -1,9 +1,43 @@
1
1
  {
2
2
  "button": {
3
3
  "import": "設定をインポート",
4
- "market": "マーケットを見る",
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": "作成をスキップ",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "도우미가 없습니다",
22
22
  "historyRange": "대화 기록 범위",
23
23
  "inbox": {
24
- "defaultMessage": "안녕하세요, 저는 당신의 인공지능 도우미입니다. 어떤 질문이든 물어보세요. 최선을 다해 답변해 드리겠습니다. 더 전문적이거나 맞춤형 도우미가 필요하다면 `+`를 클릭하여 사용자 정의 도우미를 만들 수 있습니다.",
25
24
  "desc": "뇌 클러스터를 활성화하여 창의적인 아이디어를 끌어내는 인공지능 비서입니다. 여기서 모든 것에 대해 대화합니다.",
26
25
  "title": "무작위 대화"
27
26
  },
@@ -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": {
@@ -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": "생성 건너뛰기",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "Geen assistent beschikbaar",
22
22
  "historyRange": "Geschiedenisbereik",
23
23
  "inbox": {
24
- "defaultMessage": "Hallo, ik ben je slimme assistent. Je kunt me alles vragen en ik zal mijn best doen om je te antwoorden. Als je een meer professionele of op maat gemaakte assistent nodig hebt, klik dan op het `+`-teken om een aangepaste assistent te maken.",
25
24
  "desc": "Activeer de hersencluster en laat de vonken van gedachten overslaan. Je slimme assistent, hier om met je over alles te praten.",
26
25
  "title": "Praat maar raak"
27
26
  },
@@ -50,17 +49,17 @@
50
49
  "sessionGroup": {
51
50
  "config": "Groepsbeheer",
52
51
  "confirmRemoveGroupAlert": "Je staat op het punt deze groep te verwijderen. Na verwijdering zullen de assistenten van deze groep worden verplaatst naar de standaardlijst. Bevestig je actie.",
53
- "createAgentSuccess": "Agent succesvol aangemaakt",
52
+ "createAgentSuccess": "Assistent succesvol aangemaakt",
54
53
  "createGroup": "Nieuwe groep toevoegen",
55
54
  "createSuccess": "Succesvol aangemaakt",
56
- "creatingAgent": "Agent wordt aangemaakt...",
55
+ "creatingAgent": "Assistent wordt aangemaakt...",
57
56
  "inputPlaceholder": "Voer de naam van de groep in...",
58
57
  "moveGroup": "Verplaatsen naar groep",
59
58
  "newGroup": "Nieuwe groep",
60
59
  "rename": "Groepsnaam wijzigen",
61
60
  "renameSuccess": "Naam succesvol gewijzigd",
62
61
  "sortSuccess": "Sorteren succesvol voltooid",
63
- "sorting": "Groepsortering wordt bijgewerkt...",
62
+ "sorting": "Groepsordening wordt bijgewerkt...",
64
63
  "tooLong": "De groepsnaam moet tussen 1 en 20 tekens lang zijn"
65
64
  },
66
65
  "shareModal": {
@@ -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": {
@@ -4,6 +4,40 @@
4
4
  "market": "Verken de markt",
5
5
  "start": "Nu beginnen"
6
6
  },
7
+ "guide": {
8
+ "agents": {
9
+ "replaceBtn": "Vervang een groep",
10
+ "title": "Nieuwe aanbeveling assistent: "
11
+ },
12
+ "defaultMessage": "Ik ben LobeChat, jouw persoonlijke slimme assistent. Waarmee kan ik je vandaag helpen?\nAls je een meer professionele of aangepaste assistent nodig hebt, klik dan op `+` om een aangepaste assistent te maken.",
13
+ "qa": {
14
+ "q01": "Wat is LobeHub?",
15
+ "q02": "Wat is LobeChat?",
16
+ "q03": "Heeft LobeChat community-ondersteuning?",
17
+ "q04": "Welke functies ondersteunt LobeChat?",
18
+ "q05": "Hoe kan ik LobeChat implementeren en gebruiken?",
19
+ "q06": "Hoe is de prijsstelling van LobeChat?",
20
+ "q07": "Is LobeChat gratis?",
21
+ "q08": "Is er een cloudserviceversie beschikbaar?",
22
+ "q09": "Ondersteunt LobeChat lokale taalmodellen?",
23
+ "q10": "Ondersteunt LobeChat beeldherkenning en -generatie?",
24
+ "q11": "Ondersteunt LobeChat spraaksynthese en spraakherkenning?",
25
+ "q12": "Ondersteunt LobeChat plug-insysteem?",
26
+ "q13": "Heeft LobeChat een eigen marktplaats om GPT's te verkrijgen?",
27
+ "q14": "Ondersteunt LobeChat meerdere AI-serviceproviders?",
28
+ "q15": "Wat moet ik doen als ik problemen ondervind tijdens het gebruik?"
29
+ },
30
+ "questions": {
31
+ "moreBtn": "Meer informatie",
32
+ "title": "Veelgestelde vragen: "
33
+ },
34
+ "welcome": {
35
+ "afternoon": "Goedemiddag",
36
+ "morning": "Goedemorgen",
37
+ "night": "Goedenavond",
38
+ "noon": "Goedemiddag"
39
+ }
40
+ },
7
41
  "header": "Welkom",
8
42
  "pickAgent": "Of kies een assistent-sjabloon uit de onderstaande opties",
9
43
  "skip": "Overslaan bij het maken",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "Brak asystenta",
22
22
  "historyRange": "Zakres historii",
23
23
  "inbox": {
24
- "defaultMessage": "Cześć, jestem twoim inteligentnym asystentem, możesz zadać mi dowolne pytanie, postaram się na nie odpowiedzieć. Jeśli potrzebujesz bardziej profesjonalnego lub spersonalizowanego asystenta, kliknij `+`, aby utworzyć niestandardowego asystenta.",
25
24
  "desc": "Włącz klastry mózgów, rozpal iskrę myślenia. Twój inteligentny asystent, gotowy do rozmowy o wszystkim.",
26
25
  "title": "Pogadajmy sobie"
27
26
  },
@@ -50,7 +49,7 @@
50
49
  "sessionGroup": {
51
50
  "config": "Zarządzanie grupami",
52
51
  "confirmRemoveGroupAlert": "Czy na pewno chcesz usunąć tę grupę? Po usunięciu asystenci z tej grupy zostaną przeniesieni do domyślnej listy. Potwierdź swoje działanie.",
53
- "createAgentSuccess": "Utworzono asystenta pomyślnie",
52
+ "createAgentSuccess": "Utworzenie asystenta zakończone sukcesem",
54
53
  "createGroup": "Dodaj nową grupę",
55
54
  "createSuccess": "Utworzono pomyślnie",
56
55
  "creatingAgent": "Tworzenie asystenta...",
@@ -59,7 +58,7 @@
59
58
  "newGroup": "Nowa grupa",
60
59
  "rename": "Zmień nazwę grupy",
61
60
  "renameSuccess": "Zmiana nazwy pomyślna",
62
- "sortSuccess": "Pomyślnie posortowano ponownie",
61
+ "sortSuccess": "Pomyślne ponowne sortowanie",
63
62
  "sorting": "Aktualizacja sortowania grupy...",
64
63
  "tooLong": "Nazwa grupy musi mieć od 1 do 20 znaków"
65
64
  },
@@ -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": {
@@ -4,6 +4,40 @@
4
4
  "market": "Przeglądaj rynek",
5
5
  "start": "Rozpocznij teraz"
6
6
  },
7
+ "guide": {
8
+ "agents": {
9
+ "replaceBtn": "Zmień",
10
+ "title": "Nowe zalecenia asystenta:"
11
+ },
12
+ "defaultMessage": "Jestem LobeChat, Twoim osobistym inteligentnym asystentem. Jak mogę Ci dzisiaj pomóc?\nJeśli potrzebujesz bardziej profesjonalnej lub spersonalizowanej pomocy, kliknij `+` aby stworzyć niestandardowego asystenta.",
13
+ "qa": {
14
+ "q01": "Czym jest LobeHub?",
15
+ "q02": "Czym jest LobeChat?",
16
+ "q03": "Czy LobeChat ma wsparcie społecznościowe?",
17
+ "q04": "Jakie funkcje obsługuje LobeChat?",
18
+ "q05": "Jak zainstalować i używać LobeChat?",
19
+ "q06": "Jakie są ceny LobeChat?",
20
+ "q07": "Czy LobeChat jest darmowy?",
21
+ "q08": "Czy istnieje wersja usługi w chmurze?",
22
+ "q09": "Czy obsługuje lokalne modele językowe?",
23
+ "q10": "Czy obsługuje rozpoznawanie i generowanie obrazów?",
24
+ "q11": "Czy obsługuje syntezę mowy i rozpoznawanie mowy?",
25
+ "q12": "Czy obsługuje system wtyczek?",
26
+ "q13": "Czy ma własny rynek do pobierania GPTs?",
27
+ "q14": "Czy obsługuje wiele dostawców usług AI?",
28
+ "q15": "Co zrobić, gdy napotkasz problem podczas korzystania?"
29
+ },
30
+ "questions": {
31
+ "moreBtn": "Dowiedz się więcej",
32
+ "title": "Najczęściej zadawane pytania:"
33
+ },
34
+ "welcome": {
35
+ "afternoon": "Dzień dobry",
36
+ "morning": "Dzień dobry",
37
+ "night": "Dobry wieczór",
38
+ "noon": "Dzień dobry"
39
+ }
40
+ },
7
41
  "header": "Witaj",
8
42
  "pickAgent": "Wybierz szablon asystenta lub kontynuuj",
9
43
  "skip": "Pomiń tworzenie",
@@ -21,7 +21,6 @@
21
21
  "emptyAgent": "Sem assistente disponível",
22
22
  "historyRange": "Intervalo de Histórico",
23
23
  "inbox": {
24
- "defaultMessage": "Olá, eu sou seu assistente virtual, você pode me perguntar qualquer coisa e eu farei o meu melhor para responder. Se precisar de um assistente mais profissional ou personalizado, clique em `+` para criar um assistente personalizado.",
25
24
  "desc": "Ative o cluster cerebral, inspire faíscas de pensamento. Seu assistente inteligente, aqui para conversar sobre tudo.",
26
25
  "title": "Conversa Aleatória"
27
26
  },
@@ -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": {