@lobehub/chat 0.122.9 → 0.123.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 (227) hide show
  1. package/.env.example +22 -2
  2. package/.eslintrc.js +1 -0
  3. package/CHANGELOG.md +25 -0
  4. package/README.md +11 -9
  5. package/README.zh-CN.md +11 -9
  6. package/docs/Deployment/Environment-Variable.md +65 -23
  7. package/docs/Deployment/Environment-Variable.zh-CN.md +64 -22
  8. package/locales/ar/chat.json +12 -1
  9. package/locales/ar/common.json +16 -0
  10. package/locales/ar/error.json +35 -6
  11. package/locales/ar/setting.json +53 -6
  12. package/locales/de-DE/chat.json +12 -1
  13. package/locales/de-DE/common.json +16 -0
  14. package/locales/de-DE/error.json +35 -6
  15. package/locales/de-DE/setting.json +53 -6
  16. package/locales/en-US/chat.json +13 -2
  17. package/locales/en-US/common.json +16 -0
  18. package/locales/en-US/error.json +35 -6
  19. package/locales/en-US/setting.json +53 -6
  20. package/locales/es-ES/chat.json +12 -1
  21. package/locales/es-ES/common.json +16 -0
  22. package/locales/es-ES/error.json +35 -6
  23. package/locales/es-ES/setting.json +53 -6
  24. package/locales/fr-FR/chat.json +13 -2
  25. package/locales/fr-FR/common.json +16 -0
  26. package/locales/fr-FR/error.json +35 -6
  27. package/locales/fr-FR/setting.json +53 -6
  28. package/locales/it-IT/chat.json +12 -1
  29. package/locales/it-IT/common.json +16 -0
  30. package/locales/it-IT/error.json +35 -6
  31. package/locales/it-IT/setting.json +53 -6
  32. package/locales/ja-JP/chat.json +12 -1
  33. package/locales/ja-JP/common.json +16 -0
  34. package/locales/ja-JP/error.json +35 -6
  35. package/locales/ja-JP/setting.json +53 -6
  36. package/locales/ko-KR/chat.json +12 -1
  37. package/locales/ko-KR/common.json +16 -0
  38. package/locales/ko-KR/error.json +35 -6
  39. package/locales/ko-KR/setting.json +53 -6
  40. package/locales/nl-NL/chat.json +12 -1
  41. package/locales/nl-NL/common.json +16 -0
  42. package/locales/nl-NL/error.json +35 -6
  43. package/locales/nl-NL/setting.json +53 -6
  44. package/locales/pl-PL/chat.json +12 -1
  45. package/locales/pl-PL/common.json +16 -0
  46. package/locales/pl-PL/error.json +35 -6
  47. package/locales/pl-PL/setting.json +53 -6
  48. package/locales/pt-BR/chat.json +12 -1
  49. package/locales/pt-BR/common.json +16 -0
  50. package/locales/pt-BR/error.json +35 -6
  51. package/locales/pt-BR/setting.json +53 -6
  52. package/locales/ru-RU/chat.json +12 -1
  53. package/locales/ru-RU/common.json +16 -0
  54. package/locales/ru-RU/error.json +35 -6
  55. package/locales/ru-RU/setting.json +53 -6
  56. package/locales/tr-TR/chat.json +12 -1
  57. package/locales/tr-TR/common.json +16 -0
  58. package/locales/tr-TR/error.json +35 -6
  59. package/locales/tr-TR/setting.json +53 -6
  60. package/locales/vi-VN/chat.json +12 -1
  61. package/locales/vi-VN/common.json +16 -0
  62. package/locales/vi-VN/error.json +35 -6
  63. package/locales/vi-VN/setting.json +53 -6
  64. package/locales/zh-CN/chat.json +12 -1
  65. package/locales/zh-CN/common.json +16 -0
  66. package/locales/zh-CN/error.json +34 -5
  67. package/locales/zh-CN/setting.json +59 -12
  68. package/locales/zh-TW/chat.json +12 -1
  69. package/locales/zh-TW/common.json +16 -0
  70. package/locales/zh-TW/error.json +35 -6
  71. package/locales/zh-TW/setting.json +53 -6
  72. package/next.config.mjs +8 -2
  73. package/package.json +8 -1
  74. package/src/app/api/chat/[provider]/agentRuntime.ts +129 -0
  75. package/src/app/api/chat/[provider]/route.ts +64 -0
  76. package/src/app/api/chat/auth.ts +42 -0
  77. package/src/app/api/chat/google/route.ts +86 -0
  78. package/src/app/api/config/route.ts +6 -1
  79. package/src/app/api/config.ts +3 -3
  80. package/src/app/api/errorResponse.test.ts +8 -8
  81. package/src/app/api/errorResponse.ts +43 -6
  82. package/src/app/api/openai/createBizOpenAI/createAzureOpenai.ts +1 -1
  83. package/src/app/api/openai/createBizOpenAI/createOpenai.ts +1 -1
  84. package/src/app/api/openai/createBizOpenAI/index.ts +2 -2
  85. package/src/app/chat/(desktop)/features/ChatHeader.tsx +6 -4
  86. package/src/app/chat/(desktop)/features/ChatInput/Footer/index.tsx +13 -3
  87. package/src/app/chat/(desktop)/features/ChatInput/Header/index.tsx +16 -24
  88. package/src/app/chat/(desktop)/features/SideBar/index.tsx +1 -0
  89. package/src/app/chat/features/ChatHeader/ShareButton/Preview.tsx +3 -3
  90. package/src/app/chat/features/SessionListContent/List/Item/index.tsx +2 -3
  91. package/src/app/settings/llm/Azure/index.tsx +145 -0
  92. package/src/app/settings/llm/Bedrock/index.tsx +109 -0
  93. package/src/app/settings/llm/{LLM/Checker.tsx → Checker.tsx} +11 -14
  94. package/src/app/settings/llm/Google/index.tsx +74 -0
  95. package/src/app/settings/llm/{LLM → OpenAI}/index.tsx +26 -44
  96. package/src/app/settings/llm/Zhipu/index.tsx +78 -0
  97. package/src/app/settings/llm/const.ts +13 -0
  98. package/src/app/settings/llm/page.tsx +42 -2
  99. package/src/app/settings/llm/useSyncSettings.ts +23 -0
  100. package/src/chains/__tests__/langDetect.test.ts +2 -2
  101. package/src/chains/__tests__/pickEmoji.test.ts +2 -2
  102. package/src/chains/langDetect.ts +2 -2
  103. package/src/chains/pickEmoji.ts +2 -2
  104. package/src/chains/summaryAgentName.ts +2 -2
  105. package/src/chains/summaryDescription.ts +2 -2
  106. package/src/chains/summaryTags.ts +2 -2
  107. package/src/chains/summaryTitle.ts +2 -2
  108. package/src/chains/translate.ts +2 -2
  109. package/src/components/ModelIcon/index.tsx +37 -0
  110. package/src/components/ModelProviderIcon/index.tsx +44 -0
  111. package/src/components/ModelSelect/index.tsx +133 -0
  112. package/src/components/ModelTag/ModelIcon.tsx +35 -0
  113. package/src/components/ModelTag/index.tsx +13 -0
  114. package/src/config/modelProviders/bedrock.ts +43 -0
  115. package/src/config/modelProviders/google.ts +20 -0
  116. package/src/config/modelProviders/index.ts +18 -0
  117. package/src/config/modelProviders/openai.ts +102 -0
  118. package/src/config/modelProviders/zhipu.ts +34 -0
  119. package/src/config/{server.ts → server/app.ts} +1 -24
  120. package/src/config/server/index.ts +13 -0
  121. package/src/config/server/provider.ts +78 -0
  122. package/src/const/auth.ts +30 -0
  123. package/src/const/fetch.ts +3 -0
  124. package/src/const/settings.ts +24 -4
  125. package/src/database/core/migrations/migrateSettingsToUser/index.test.ts +2 -1
  126. package/src/database/core/migrations/migrateSettingsToUser/index.ts +1 -18
  127. package/src/database/core/migrations/migrateSettingsToUser/type.ts +100 -0
  128. package/src/database/models/message.ts +3 -1
  129. package/src/database/schemas/message.ts +1 -0
  130. package/src/database/schemas/session.ts +1 -0
  131. package/src/features/AgentSetting/AgentConfig/ModelSelect.tsx +71 -0
  132. package/src/features/AgentSetting/AgentConfig/index.tsx +171 -161
  133. package/src/features/AgentSetting/AgentConfig/useSyncConfig.ts +23 -0
  134. package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +39 -0
  135. package/src/features/AgentSetting/AgentPrompt/index.tsx +4 -26
  136. package/src/features/AgentSetting/store/index.ts +10 -2
  137. package/src/features/ChatInput/ActionBar/FileUpload.tsx +11 -4
  138. package/src/features/ChatInput/ActionBar/ModelSwitch.tsx +56 -14
  139. package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +42 -7
  140. package/src/features/ChatInput/ActionBar/Token/index.tsx +5 -2
  141. package/src/features/ChatInput/ActionBar/Tools/index.tsx +11 -1
  142. package/src/features/ChatInput/useChatInput.ts +5 -1
  143. package/src/features/Conversation/Error/APIKeyForm/Bedrock.tsx +80 -0
  144. package/src/features/Conversation/Error/APIKeyForm/Google.tsx +61 -0
  145. package/src/features/Conversation/Error/APIKeyForm/OpenAI.tsx +63 -0
  146. package/src/features/Conversation/Error/APIKeyForm/Zhipu.tsx +62 -0
  147. package/src/features/Conversation/Error/APIKeyForm/index.tsx +72 -0
  148. package/src/features/Conversation/Error/AccessCodeForm.tsx +63 -0
  149. package/src/features/Conversation/Error/ErrorJsonViewer.tsx +26 -0
  150. package/src/features/Conversation/Error/InvalidAPIKey.tsx +16 -0
  151. package/src/features/Conversation/Error/InvalidAccessCode.tsx +50 -0
  152. package/src/features/Conversation/Error/OpenAiBizError.tsx +9 -17
  153. package/src/features/Conversation/Error/{Plugin/PluginSettings.tsx → PluginSettings.tsx} +8 -3
  154. package/src/features/Conversation/Error/index.tsx +75 -70
  155. package/src/features/Conversation/Error/style.tsx +9 -3
  156. package/src/features/Conversation/Extras/Assistant.tsx +2 -3
  157. package/src/features/Conversation/Plugins/Inspector/index.tsx +8 -2
  158. package/src/features/Conversation/components/ChatItem/index.tsx +9 -24
  159. package/src/features/Conversation/types/index.tsx +2 -5
  160. package/src/hooks/_header.ts +35 -0
  161. package/src/libs/agent-runtime/BaseAI.ts +9 -0
  162. package/src/libs/agent-runtime/azureOpenai/index.ts +72 -0
  163. package/src/libs/agent-runtime/bedrock/index.ts +134 -0
  164. package/src/libs/agent-runtime/error.ts +26 -0
  165. package/src/libs/agent-runtime/google/index.ts +160 -0
  166. package/src/libs/agent-runtime/index.ts +9 -0
  167. package/src/libs/agent-runtime/openai/index.test.ts +176 -0
  168. package/src/libs/agent-runtime/openai/index.ts +107 -0
  169. package/src/libs/agent-runtime/types/chat.ts +119 -0
  170. package/src/libs/agent-runtime/types/index.ts +2 -0
  171. package/src/libs/agent-runtime/types/type.ts +34 -0
  172. package/src/libs/agent-runtime/utils/createError.ts +10 -0
  173. package/src/libs/agent-runtime/utils/debugStream.ts +18 -0
  174. package/src/libs/agent-runtime/utils/env.ts +1 -0
  175. package/src/libs/agent-runtime/utils/handleOpenAIError.ts +39 -0
  176. package/src/libs/agent-runtime/utils/uriParser.ts +16 -0
  177. package/src/libs/agent-runtime/zhipu/authToken.ts +22 -0
  178. package/src/libs/agent-runtime/zhipu/index.ts +125 -0
  179. package/src/locales/default/chat.ts +12 -2
  180. package/src/locales/default/common.ts +16 -0
  181. package/src/locales/default/error.ts +42 -5
  182. package/src/locales/default/setting.ts +61 -12
  183. package/src/services/__tests__/chat.test.ts +8 -2
  184. package/src/services/__tests__/message.test.ts +1 -1
  185. package/src/services/_auth.ts +106 -0
  186. package/src/services/_header.ts +1 -0
  187. package/src/services/_url.ts +0 -2
  188. package/src/services/chat.ts +32 -14
  189. package/src/store/chat/slices/message/action.ts +9 -6
  190. package/src/store/global/slices/common/action.ts +8 -2
  191. package/src/store/global/slices/settings/action.test.ts +2 -2
  192. package/src/store/global/slices/settings/action.ts +11 -4
  193. package/src/store/global/slices/settings/selectors/__snapshots__/modelProvider.test.ts.snap +242 -78
  194. package/src/store/global/slices/settings/selectors/__snapshots__/selectors.test.ts.snap +2 -0
  195. package/src/store/global/slices/settings/selectors/modelProvider.test.ts +171 -47
  196. package/src/store/global/slices/settings/selectors/modelProvider.ts +136 -43
  197. package/src/store/session/slices/agent/selectors.test.ts +0 -48
  198. package/src/store/session/slices/agent/selectors.ts +7 -12
  199. package/src/types/agent/index.ts +6 -2
  200. package/src/types/fetch.ts +4 -2
  201. package/src/types/files.ts +3 -3
  202. package/src/types/llm.ts +27 -0
  203. package/src/types/message/index.ts +7 -3
  204. package/src/types/openai/chat.ts +6 -11
  205. package/src/types/settings/index.ts +1 -0
  206. package/src/types/settings/modelProvider.ts +37 -1
  207. package/src/utils/__snapshots__/parseModels.test.ts.snap +63 -0
  208. package/src/utils/parseModels.test.ts +24 -0
  209. package/src/utils/parseModels.ts +37 -0
  210. package/src/app/api/openai/chat/createChatCompletion.test.ts +0 -166
  211. package/src/app/api/openai/chat/createChatCompletion.ts +0 -76
  212. package/src/app/api/openai/chat/route.ts +0 -19
  213. package/src/app/api/openai/models/route.ts +0 -17
  214. package/src/app/settings/llm/LLM/ModelList.tsx +0 -51
  215. package/src/app/settings/llm/LLM/getModelList.ts +0 -9
  216. package/src/app/settings/llm/index.tsx +0 -36
  217. package/src/const/llm.ts +0 -32
  218. package/src/features/Conversation/Error/ApiKeyForm.tsx +0 -87
  219. package/src/features/Conversation/Error/ErrorActionContainer.tsx +0 -23
  220. package/src/features/Conversation/Error/InvalidAccess.tsx +0 -90
  221. package/src/features/Conversation/Error/OpenAPIKey.tsx +0 -13
  222. package/src/features/Conversation/Error/Plugin/PluginError.tsx +0 -30
  223. package/src/services/modelList.ts +0 -15
  224. /package/src/app/chat/(desktop)/features/ChatInput/{Header → Footer}/DragUpload.tsx +0 -0
  225. /package/src/{app/api/openai/chat → libs/agent-runtime/utils}/desensitizeUrl.test.ts +0 -0
  226. /package/src/{app/api/openai/chat → libs/agent-runtime/utils}/desensitizeUrl.ts +0 -0
  227. /package/src/types/{translate.ts → message/translate.ts} +0 -0
@@ -1,4 +1,7 @@
1
1
  {
2
+ "ModelSwitch": {
3
+ "title": "モデル"
4
+ },
2
5
  "agentDefaultMessage": "こんにちは、私は **{{name}}** です。すぐにチャットを開始するか、[エージェント設定](/chat/settings#session={{id}}) に移動して私の情報を完全にすることができます。",
3
6
  "agentDefaultMessageWithSystemRole": "こんにちは、私は **{{name}}** です、{{systemRole}}、さあ、チャットを始めましょう!",
4
7
  "backToBottom": "現在に戻る",
@@ -64,7 +67,14 @@
64
67
  "prettifying": "整形中..."
65
68
  },
66
69
  "temp": "一時的",
67
- "tokenDetail": "役割設定: {{systemRoleToken}} · チャット履歴: {{chatsToken}}",
70
+ "tokenDetails": {
71
+ "chats": "チャットメッセージ",
72
+ "rest": "残り利用可能",
73
+ "systemRole": "システムロール設定",
74
+ "tools": "ツール設定",
75
+ "total": "合計利用可能",
76
+ "used": "合計使用"
77
+ },
68
78
  "tokenTag": {
69
79
  "overload": "制限を超えています",
70
80
  "remained": "残り",
@@ -102,6 +112,7 @@
102
112
  "updateAgent": "エージェント情報を更新",
103
113
  "upload": {
104
114
  "actionTooltip": "画像をアップロード",
115
+ "disabled": "現在のモデルはビジュアル認識をサポートしていません。モデルを切り替えて使用してください",
105
116
  "dragDesc": "ファイルをここにドラッグしてください。複数の画像をアップロードできます。Shift キーを押しながら画像を直接送信することもできます。",
106
117
  "dragTitle": "画像をアップロード"
107
118
  }
@@ -1,4 +1,12 @@
1
1
  {
2
+ "ModelSelect": {
3
+ "featureTag": {
4
+ "custom": "カスタムモデル、デフォルトでは関数呼び出しとビジョン認識の両方をサポートしています。上記の機能の有効性を実際の状況で検証してください。",
5
+ "functionCall": "このモデルは関数呼び出し(Function Call)をサポートしています。",
6
+ "tokens": "このモデルは1つのセッションあたり最大{{tokens}}トークンをサポートしています。",
7
+ "vision": "このモデルはビジョン認識をサポートしています。"
8
+ }
9
+ },
2
10
  "about": "概要",
3
11
  "advanceSettings": "高度な設定",
4
12
  "agentMaxToken": "エージェントの最大トークン数",
@@ -89,6 +97,14 @@
89
97
  "zh-TW": "繁体字中国語"
90
98
  },
91
99
  "layoutInitializing": "レイアウトを初期化中...",
100
+ "modelProvider": {
101
+ "azure": "Azure",
102
+ "bedrock": "AWSベッドロック",
103
+ "google": "Google",
104
+ "oneapi": "One API",
105
+ "openai": "OpenAI",
106
+ "zhipu": "智譜AI"
107
+ },
92
108
  "noDescription": "説明はありません",
93
109
  "ok": "OK",
94
110
  "password": "パスワード",
@@ -33,8 +33,17 @@
33
33
  "502": "申し訳ありませんが、サーバーは一時的にサービスを提供できません。しばらくしてから再試行してください",
34
34
  "503": "申し訳ありませんが、サーバーは現在、リクエストを処理できません。オーバーロードまたはメンテナンス中の可能性があります。しばらくしてから再試行してください",
35
35
  "504": "申し訳ありませんが、サーバーは上位サーバーからの応答を待っていません。しばらくしてから再試行してください",
36
- "InvalidAccessCode": "パスワードが正しくないか空です。正しいアクセスパスワードを入力するか、カスタムのOpenAI APIキーを追加してください",
37
- "NoAPIKey": "OpenAI APIキーが空です。カスタムOpenAI APIキーを追加してください。",
36
+ "AgentRuntimeError": "Lobe言語モデルの実行時にエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。",
37
+ "AzureBizError": "Azure AIサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。",
38
+ "BedrockBizError": "Bedrockサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。",
39
+ "GoogleBizError": "Googleサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。",
40
+ "InvalidAccessCode": "パスワードが正しくないか空です。正しいアクセスパスワードを入力するか、カスタムAPIキーを追加してください",
41
+ "InvalidAzureAPIKey": "Azure APIキーが正しくないか空です。Azure APIキーを確認してから再試行してください。",
42
+ "InvalidBedrockCredentials": "Bedrockの認証に失敗しました。AccessKeyId/SecretAccessKeyを確認してから再試行してください。",
43
+ "InvalidGoogleAPIKey": "Google APIキーが正しくないか空です。Google APIキーを確認してから再試行してください。",
44
+ "InvalidZhipuAPIKey": "Zhipu APIキーが正しくないか空です。Zhipu APIキーを確認してから再試行してください。",
45
+ "LocationNotSupportError": "申し訳ありませんが、お住まいの地域ではこのモデルサービスをサポートしていません。地域制限またはサービスが利用できない可能性があります。現在の位置がこのサービスをサポートしているかどうかを確認するか、他の位置情報を使用してみてください。",
46
+ "NoOpenAIAPIKey": "OpenAI APIキーが空です。カスタムOpenAI APIキーを追加してください。",
38
47
  "OpenAIBizError": "OpenAIサービスのリクエストエラーが発生しました。以下の情報に基づいて問題を解決したり、再試行したりしてください",
39
48
  "PluginApiNotFound": "申し訳ありませんが、プラグインのマニフェストに指定されたAPIが見つかりませんでした。リクエストメソッドとプラグインのマニフェストのAPIが一致しているかどうかを確認してください",
40
49
  "PluginApiParamsError": "申し訳ありませんが、プラグインのリクエストパラメータの検証に失敗しました。パラメータとAPIの説明が一致しているかどうか確認してください",
@@ -47,7 +56,8 @@
47
56
  "PluginMetaNotFound": "申し訳ありませんが、インデックスでプラグインが見つかりませんでした。プラグインの設定情報をインデックスで確認してください",
48
57
  "PluginOpenApiInitError": "申し訳ありませんが、OpenAPIクライアントの初期化に失敗しました。OpenAPIの設定情報を確認してください。",
49
58
  "PluginServerError": "プラグインサーバーのリクエストエラーが発生しました。以下のエラーメッセージを参考に、プラグインのマニフェストファイル、設定、サーバー実装を確認してください",
50
- "PluginSettingsInvalid": "このプラグインを使用するには、正しい設定が必要です。設定が正しいかどうか確認してください"
59
+ "PluginSettingsInvalid": "このプラグインを使用するには、正しい設定が必要です。設定が正しいかどうか確認してください",
60
+ "ZhipuBizError": "Zhipuサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。"
51
61
  },
52
62
  "stt": {
53
63
  "responseError": "サービスリクエストが失敗しました。設定を確認するか、もう一度お試しください"
@@ -57,9 +67,24 @@
57
67
  },
58
68
  "unlock": {
59
69
  "apikey": {
60
- "addProxyUrl": "OpenAIプロキシURLを追加(オプション)",
61
- "description": "OpenAI APIキーを入力すると、会話を開始できます。アプリはあなたのAPIキーを記録しません。",
62
- "title": "カスタムAPIキーの使用"
70
+ "Bedrock": {
71
+ "customRegion": "自定义服务区域",
72
+ "description": "Aws AccessKeyId / SecretAccessKeyを入力してセッションを開始します。アプリは認証構成を記録しません。",
73
+ "title": "カスタムBedrock認証情報を使用"
74
+ },
75
+ "Google": {
76
+ "description": "Google APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
77
+ "title": "カスタムGoogle APIキーを使用"
78
+ },
79
+ "OpenAI": {
80
+ "addProxyUrl": "OpenAIプロキシアドレスを追加(オプション)",
81
+ "description": "OpenAI APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
82
+ "title": "カスタムOpenAI APIキーを使用"
83
+ },
84
+ "Zhipu": {
85
+ "description": "Zhipu APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
86
+ "title": "カスタムZhipu APIキーを使用"
87
+ }
63
88
  },
64
89
  "closeMessage": "ヒントを閉じる",
65
90
  "confirm": "確認して再試行",
@@ -67,6 +92,10 @@
67
92
  "description": "管理者によってアプリが暗号化されました。アプリをロック解除するには、アプリのパスワードを入力してください。パスワードは1回だけ入力すればよいです",
68
93
  "placeholder": "パスワードを入力してください",
69
94
  "title": "パスワードを入力してアプリをロック解除"
95
+ },
96
+ "tabs": {
97
+ "apiKey": "カスタムAPIキー",
98
+ "password": "パスワード"
70
99
  }
71
100
  }
72
101
  }
@@ -22,6 +22,15 @@
22
22
  },
23
23
  "llm": {
24
24
  "AzureOpenAI": {
25
+ "azureApiVersion": {
26
+ "desc": "AzureのAPIバージョン。YYYY-MM-DD形式に従う。[最新バージョン](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)を参照",
27
+ "fetch": "リストを取得",
28
+ "title": "Azure APIバージョン"
29
+ },
30
+ "deployments": {
31
+ "desc": "id=nameの構文を使用して、デプロイモデルを記入します(デプロイ名とモデルが同じ場合、モデル名のみを記入できます)。複数のモデルは、カンマ(,)で区切ります",
32
+ "title": "Azureデプロイリスト"
33
+ },
25
34
  "endpoint": {
26
35
  "desc": "Azure ポータルでリソースを確認すると、この値は「キーとエンドポイント」セクションで見つけることができます",
27
36
  "placeholder": "https://docs-test-001.openai.azure.com",
@@ -38,18 +47,41 @@
38
47
  "title": "API キー"
39
48
  }
40
49
  },
50
+ "Bedrock": {
51
+ "accessKeyId": {
52
+ "desc": "Aws Access Key Idを入力",
53
+ "placeholder": "Aws Access Key Id",
54
+ "title": "Aws Access Key Id"
55
+ },
56
+ "checker": {
57
+ "desc": "AccessKeyId / SecretAccessKeyが正しく記入されているかをテスト"
58
+ },
59
+ "region": {
60
+ "desc": "Aws Regionを入力",
61
+ "placeholder": "Aws Region",
62
+ "title": "Aws Region"
63
+ },
64
+ "secretAccessKey": {
65
+ "desc": "Aws Secret Access Keyを入力",
66
+ "placeholder": "Aws Secret Access Key",
67
+ "title": "Aws Secret Access Key"
68
+ },
69
+ "title": "Bedrock"
70
+ },
71
+ "Google": {
72
+ "title": "Google",
73
+ "token": {
74
+ "desc": "Googleから取得したAPIキーを入力",
75
+ "placeholder": "Google API Key",
76
+ "title": "APIキー"
77
+ }
78
+ },
41
79
  "OpenAI": {
42
80
  "azureApiVersion": {
43
81
  "desc": "Azure の API バージョンは YYYY-MM-DD 形式に従い、[最新バージョン](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)を参照してください",
44
82
  "fetch": "リストを取得",
45
83
  "title": "Azure API バージョン"
46
84
  },
47
- "check": {
48
- "button": "チェック",
49
- "desc": "API キーとプロキシアドレスが正しく入力されているかをテストします",
50
- "pass": "チェックに合格",
51
- "title": "接続性チェック"
52
- },
53
85
  "customModelName": {
54
86
  "desc": "カスタムモデルを追加し、複数のモデルはカンマ(,)で区切って使用します",
55
87
  "placeholder": "model1,model2,model3",
@@ -82,6 +114,20 @@
82
114
  "title": "Azure OpenAI を使用"
83
115
  }
84
116
  },
117
+ "Zhipu": {
118
+ "title": "智谱",
119
+ "token": {
120
+ "desc": "智谱から取得したAPIキーを入力",
121
+ "placeholder": "Zhipu API Key",
122
+ "title": "APIキー"
123
+ }
124
+ },
125
+ "checker": {
126
+ "button": "チェック",
127
+ "desc": "APIキーとプロキシアドレスが正しく記入されているかをテスト",
128
+ "pass": "チェック合格",
129
+ "title": "接続性チェック"
130
+ },
85
131
  "waitingForMore": "さらに多くのモデルが <1>計画されています</1>。お楽しみに ✨"
86
132
  },
87
133
  "plugin": {
@@ -293,6 +339,7 @@
293
339
  "builtins": {
294
340
  "groupName": "組み込み"
295
341
  },
342
+ "disabled": "現在のモデルは関数呼び出しをサポートしていません。プラグインを使用できません",
296
343
  "plugins": {
297
344
  "enabled": "{{num}} が有効",
298
345
  "groupName": "プラグイン",
@@ -1,4 +1,7 @@
1
1
  {
2
+ "ModelSwitch": {
3
+ "title": "모델"
4
+ },
2
5
  "agentDefaultMessage": "안녕하세요, 저는 **{{name}}**입니다. 지금 즉시 대화를 시작하거나 [도우미 설정](/chat/settings#session={{id}})으로 이동하여 내 정보를 완성할 수 있습니다.",
3
6
  "agentDefaultMessageWithSystemRole": "안녕하세요, 저는 **{{name}}**입니다. {{systemRole}}입니다. 대화를 시작해 봅시다!",
4
7
  "backToBottom": "하단으로 이동",
@@ -64,7 +67,14 @@
64
67
  "prettifying": "정제 중..."
65
68
  },
66
69
  "temp": "임시",
67
- "tokenDetail": "역할 설정: {{systemRoleToken}} · 대화 기록: {{chatsToken}}",
70
+ "tokenDetails": {
71
+ "chats": "채팅 메시지",
72
+ "rest": "남은 사용량",
73
+ "systemRole": "시스템 역할",
74
+ "tools": "도구 설정",
75
+ "total": "총 사용량",
76
+ "used": "총 사용"
77
+ },
68
78
  "tokenTag": {
69
79
  "overload": "한도 초과",
70
80
  "remained": "남음",
@@ -102,6 +112,7 @@
102
112
  "updateAgent": "도우미 정보 업데이트",
103
113
  "upload": {
104
114
  "actionTooltip": "이미지 업로드",
115
+ "disabled": "현재 모델은 시각 인식을 지원하지 않습니다. 모델을 전환한 후 사용해주세요.",
105
116
  "dragDesc": "여기로 파일을 끌어다 놓거나 여러 이미지를 업로드할 수 있습니다. Shift를 누른 채로 이미지를 직접 보내기",
106
117
  "dragTitle": "이미지 업로드"
107
118
  }
@@ -1,4 +1,12 @@
1
1
  {
2
+ "ModelSelect": {
3
+ "featureTag": {
4
+ "custom": "사용자 정의 모델, 기본적으로 함수 호출 및 시각 인식을 모두 지원하며, 상기 기능의 가용성을 실제로 확인하십시오",
5
+ "functionCall": "이 모델은 함수 호출을 지원합니다",
6
+ "tokens": "이 모델은 단일 세션당 최대 {{tokens}} 토큰을 지원합니다",
7
+ "vision": "이 모델은 시각 인식을 지원합니다"
8
+ }
9
+ },
2
10
  "about": "소개",
3
11
  "advanceSettings": "고급 설정",
4
12
  "agentMaxToken": "최대 대화 길이",
@@ -89,6 +97,14 @@
89
97
  "zh-TW": "중국어(번체)"
90
98
  },
91
99
  "layoutInitializing": "레이아웃을 불러오는 중...",
100
+ "modelProvider": {
101
+ "azure": "Azure",
102
+ "bedrock": "AWS Bedrock",
103
+ "google": "Google",
104
+ "oneapi": "One API",
105
+ "openai": "OpenAI",
106
+ "zhipu": "지푸 AI"
107
+ },
92
108
  "noDescription": "설명 없음",
93
109
  "ok": "확인",
94
110
  "password": "비밀번호",
@@ -33,8 +33,17 @@
33
33
  "502": "죄송합니다. 서버가 잠시 서비스를 제공할 수 없는 상태입니다. 잠시 후에 다시 시도해주세요.",
34
34
  "503": "죄송합니다. 서버가 현재 요청을 처리할 수 없습니다. 과부하 또는 유지 보수 중일 수 있습니다. 잠시 후에 다시 시도해주세요.",
35
35
  "504": "죄송합니다. 서버가 상위 서버의 응답을 기다리지 못했습니다. 잠시 후에 다시 시도해주세요.",
36
- "InvalidAccessCode": "암호가 올바르지 않거나 비어 있습니다. 올바른 액세스 암호를 입력하거나 사용자 지정 OpenAI API 키를 추가해주세요.",
37
- "NoAPIKey": "OpenAI API 키가 비어 있습니다. 사용자 정의 OpenAI API 키를 추가해주세요.",
36
+ "AgentRuntimeError": "Lobe 언어 모델 실행 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
37
+ "AzureBizError": "Azure AI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
38
+ "BedrockBizError": "Bedrock 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
39
+ "GoogleBizError": "Google 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
40
+ "InvalidAccessCode": "액세스 코드가 잘못되었거나 비어 있습니다. 올바른 액세스 코드를 입력하거나 사용자 지정 API 키를 추가하십시오.",
41
+ "InvalidAzureAPIKey": "잘못된 또는 비어 있는 Azure API Key입니다. Azure API Key를 확인한 후 다시 시도하십시오.",
42
+ "InvalidBedrockCredentials": "Bedrock 인증에 실패했습니다. AccessKeyId/SecretAccessKey를 확인한 후 다시 시도하십시오.",
43
+ "InvalidGoogleAPIKey": "잘못된 또는 비어 있는 Google API Key입니다. Google API Key를 확인한 후 다시 시도하십시오.",
44
+ "InvalidZhipuAPIKey": "잘못된 또는 비어 있는 Zhipu API Key입니다. Zhipu API Key를 확인한 후 다시 시도하십시오.",
45
+ "LocationNotSupportError": "죄송합니다. 귀하의 현재 위치는 해당 모델 서비스를 지원하지 않습니다. 지역 제한 또는 서비스 미개통으로 인한 것일 수 있습니다. 현재 위치가 해당 서비스를 지원하는지 확인하거나 다른 위치 정보를 사용해 보십시오.",
46
+ "NoOpenAIAPIKey": "OpenAI API 키가 비어 있습니다. 사용자 정의 OpenAI API 키를 추가해주세요.",
38
47
  "OpenAIBizError": "OpenAI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 문제를 해결하거나 다시 시도해주세요.",
39
48
  "PluginApiNotFound": "죄송합니다. 플러그인 설명서에 해당 API가 없습니다. 요청 메서드와 플러그인 설명서 API가 일치하는지 확인해주세요.",
40
49
  "PluginApiParamsError": "죄송합니다. 플러그인 요청의 입력 매개변수 유효성 검사에 실패했습니다. 입력 매개변수와 API 설명 정보가 일치하는지 확인해주세요.",
@@ -47,7 +56,8 @@
47
56
  "PluginMetaNotFound": "죄송합니다. 인덱스에서 해당 플러그인을 찾을 수 없습니다. 플러그인의 구성 정보를 인덱스에서 확인해주세요.",
48
57
  "PluginOpenApiInitError": "죄송합니다. OpenAPI 클라이언트 초기화에 실패했습니다. OpenAPI 구성 정보를 확인해주세요.",
49
58
  "PluginServerError": "플러그인 서버 요청이 오류로 반환되었습니다. 플러그인 설명 파일, 플러그인 구성 또는 서버 구현을 확인해주세요.",
50
- "PluginSettingsInvalid": "플러그인을 사용하려면 올바른 구성이 필요합니다. 구성이 올바른지 확인해주세요."
59
+ "PluginSettingsInvalid": "플러그인을 사용하려면 올바른 구성이 필요합니다. 구성이 올바른지 확인해주세요.",
60
+ "ZhipuBizError": "Zhipu 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오."
51
61
  },
52
62
  "stt": {
53
63
  "responseError": "서비스 요청이 실패했습니다. 구성을 확인하거나 다시 시도해주세요."
@@ -57,9 +67,24 @@
57
67
  },
58
68
  "unlock": {
59
69
  "apikey": {
60
- "addProxyUrl": "OpenAI 프록시 주소 추가하기 (선택 사항)",
61
- "description": "OpenAI API 키를 입력하면 대화를 시작할 수 있습니다. 애플리케이션은 API 키를 기록하지 않습니다.",
62
- "title": "사용자 정의 API 키 사용"
70
+ "Bedrock": {
71
+ "customRegion": "사용자 정의 서비스 지역",
72
+ "description": "Aws AccessKeyId / SecretAccessKey를 입력하여 세션을 시작합니다. 앱은 귀하의 인증 구성을 기록하지 않습니다.",
73
+ "title": "사용자 정의 Bedrock 인증 정보 사용"
74
+ },
75
+ "Google": {
76
+ "description": "Google API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
77
+ "title": "사용자 정의 Google API Key 사용"
78
+ },
79
+ "OpenAI": {
80
+ "addProxyUrl": "OpenAI 프록시 주소 추가(선택 사항)",
81
+ "description": "OpenAI API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
82
+ "title": "사용자 정의 OpenAI API Key 사용"
83
+ },
84
+ "Zhipu": {
85
+ "description": "Zhipu API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
86
+ "title": "사용자 정의 Zhipu API Key 사용"
87
+ }
63
88
  },
64
89
  "closeMessage": "알림 닫기",
65
90
  "confirm": "확인 및 다시 시도",
@@ -67,6 +92,10 @@
67
92
  "description": "관리자가 애플리케이션 암호화를 활성화했습니다. 애플리케이션을 잠금 해제하려면 애플리케이션 비밀번호를 입력하십시오. 비밀번호는 한 번만 입력하면 됩니다.",
68
93
  "placeholder": "비밀번호를 입력하세요",
69
94
  "title": "암호 입력하여 애플리케이션 잠금 해제"
95
+ },
96
+ "tabs": {
97
+ "apiKey": "사용자 정의 API Key",
98
+ "password": "비밀번호"
70
99
  }
71
100
  }
72
101
  }
@@ -22,6 +22,15 @@
22
22
  },
23
23
  "llm": {
24
24
  "AzureOpenAI": {
25
+ "azureApiVersion": {
26
+ "desc": "Azure의 API 버전은 YYYY-MM-DD 형식을 따르며, [최신 버전](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)을 확인하세요.",
27
+ "fetch": "목록 가져오기",
28
+ "title": "Azure API 버전"
29
+ },
30
+ "deployments": {
31
+ "desc": "id=name 구문을 사용하여 배포 모델을 작성합니다(예: 배포 이름과 모델이 동일한 경우 모델 이름만 작성할 수 있습니다). 여러 모델은 쉼표(,)로 구분합니다.",
32
+ "title": "Azure 배포 모델 목록"
33
+ },
25
34
  "endpoint": {
26
35
  "desc": "Azure 포털에서 리소스를 확인할 때 이 값을“키 및 엔드포인트” 섹션에서 찾을 수 있습니다",
27
36
  "placeholder": "https://docs-test-001.openai.azure.com",
@@ -38,18 +47,41 @@
38
47
  "title": "API 키"
39
48
  }
40
49
  },
50
+ "Bedrock": {
51
+ "accessKeyId": {
52
+ "desc": "Aws Access Key Id를 입력하세요",
53
+ "placeholder": "Aws Access Key Id",
54
+ "title": "Aws Access Key Id"
55
+ },
56
+ "checker": {
57
+ "desc": "AccessKeyId / SecretAccessKey를 올바르게 입력했는지 테스트합니다"
58
+ },
59
+ "region": {
60
+ "desc": "Aws 지역을 입력하세요",
61
+ "placeholder": "Aws Region",
62
+ "title": "Aws 지역"
63
+ },
64
+ "secretAccessKey": {
65
+ "desc": "Aws Secret Access Key를 입력하세요",
66
+ "placeholder": "Aws Secret Access Key",
67
+ "title": "Aws Secret Access Key"
68
+ },
69
+ "title": "Bedrock"
70
+ },
71
+ "Google": {
72
+ "title": "Google",
73
+ "token": {
74
+ "desc": "Google의 API Key를 입력하세요",
75
+ "placeholder": "Google API Key",
76
+ "title": "API Key"
77
+ }
78
+ },
41
79
  "OpenAI": {
42
80
  "azureApiVersion": {
43
81
  "desc": "Azure의 API 버전으로 YYYY-MM-DD 형식을 따르며 [최신 버전](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)을 확인하세요",
44
82
  "fetch": "목록 가져오기",
45
83
  "title": "Azure API 버전"
46
84
  },
47
- "check": {
48
- "button": "확인",
49
- "desc": "API 키 및 프록시 주소가 올바르게 입력되었는지 테스트합니다",
50
- "pass": "확인 완료",
51
- "title": "연결성 확인"
52
- },
53
85
  "customModelName": {
54
86
  "desc": "사용자 정의 모델 추가, 여러 모델은 쉼표(,)로 구분합니다",
55
87
  "placeholder": "모델1,모델2,모델3",
@@ -82,6 +114,20 @@
82
114
  "title": "Azure OpenAI"
83
115
  }
84
116
  },
117
+ "Zhipu": {
118
+ "title": "智谱",
119
+ "token": {
120
+ "desc": "智谱의 API Key를 입력하세요",
121
+ "placeholder": "Zhipu API Key",
122
+ "title": "API Key"
123
+ }
124
+ },
125
+ "checker": {
126
+ "button": "확인",
127
+ "desc": "API Key 및 프록시 주소가 올바르게 입력되었는지 테스트합니다",
128
+ "pass": "확인 통과",
129
+ "title": "연결성 확인"
130
+ },
85
131
  "waitingForMore": "<1>계획에 따라 더 많은 모델이 추가될 예정</1>이니 기대해 주세요 ✨"
86
132
  },
87
133
  "plugin": {
@@ -293,6 +339,7 @@
293
339
  "builtins": {
294
340
  "groupName": "내장"
295
341
  },
342
+ "disabled": "현재 모델은 함수 호출을 지원하지 않으며 플러그인을 사용할 수 없습니다",
296
343
  "plugins": {
297
344
  "enabled": "활성화됨 {{num}}",
298
345
  "groupName": "플러그인",
@@ -1,4 +1,7 @@
1
1
  {
2
+ "ModelSwitch": {
3
+ "title": "Modelen"
4
+ },
2
5
  "agentDefaultMessage": "Hallo, ik ben **{{name}}**. Je kunt meteen met me praten of naar [Assistentinstellingen](/chat/settings#session={{id}}) gaan om mijn informatie aan te vullen.",
3
6
  "agentDefaultMessageWithSystemRole": "Hallo, ik ben **{{name}}**, {{systemRole}}, laten we beginnen met praten!",
4
7
  "backToBottom": "Terug naar onderen",
@@ -64,7 +67,14 @@
64
67
  "prettifying": "Aan het verfraaien..."
65
68
  },
66
69
  "temp": "Tijdelijk",
67
- "tokenDetail": "Rolinstelling: {{systemRoleToken}} · Chatbericht: {{chatsToken}} · Toolinstelling: {{toolsToken}}",
70
+ "tokenDetails": {
71
+ "chats": "Chats",
72
+ "rest": "Rust",
73
+ "systemRole": "Systeemrol",
74
+ "tools": "Tools",
75
+ "total": "Totaal",
76
+ "used": "Gebruikt"
77
+ },
68
78
  "tokenTag": {
69
79
  "overload": "Overschrijding van limiet",
70
80
  "remained": "Resterend",
@@ -102,6 +112,7 @@
102
112
  "updateAgent": "Assistentgegevens bijwerken",
103
113
  "upload": {
104
114
  "actionTooltip": "Upload afbeelding",
115
+ "disabled": "Het huidige model ondersteunt geen visuele herkenning. Schakel over naar een ander model om dit te gebruiken.",
105
116
  "dragDesc": "Sleep bestanden hierheen om meerdere afbeeldingen te uploaden. Houd Shift ingedrukt om afbeeldingen direct te verzenden",
106
117
  "dragTitle": "Upload afbeelding"
107
118
  }
@@ -1,4 +1,12 @@
1
1
  {
2
+ "ModelSelect": {
3
+ "featureTag": {
4
+ "custom": "Aangepast model, standaard ingesteld om zowel functieoproep als visuele herkenning te ondersteunen. Verifieer de beschikbaarheid van deze mogelijkheden op basis van de werkelijke situatie.",
5
+ "functionCall": "Dit model ondersteunt functieoproep (Function Call).",
6
+ "tokens": "Dit model ondersteunt maximaal {{tokens}} tokens per sessie.",
7
+ "vision": "Dit model ondersteunt visuele herkenning."
8
+ }
9
+ },
2
10
  "about": "Over",
3
11
  "advanceSettings": "Geavanceerde instellingen",
4
12
  "agentMaxToken": "Maximale sessielengte",
@@ -89,6 +97,14 @@
89
97
  "zh-TW": "Traditioneel Chinees"
90
98
  },
91
99
  "layoutInitializing": "Lay-out wordt geladen...",
100
+ "modelProvider": {
101
+ "azure": "Azure",
102
+ "bedrock": "AWS Bedrock",
103
+ "google": "Google",
104
+ "oneapi": "One API",
105
+ "openai": "OpenAI",
106
+ "zhipu": "智谱AI"
107
+ },
92
108
  "noDescription": "Geen beschrijving beschikbaar",
93
109
  "ok": "Oké",
94
110
  "password": "Wachtwoord",
@@ -33,8 +33,17 @@
33
33
  "502": "Sorry, de server lijkt de weg kwijt te zijn en kan tijdelijk geen service verlenen. Probeer het later opnieuw",
34
34
  "503": "Sorry, de server kan uw verzoek momenteel niet verwerken vanwege overbelasting of onderhoud. Probeer het later opnieuw",
35
35
  "504": "Sorry, de server heeft geen reactie ontvangen van de upstream server. Probeer het later opnieuw",
36
- "InvalidAccessCode": "Ongeldige of lege toegangscode. Voer de juiste toegangscode in of voeg een aangepaste OpenAI API-sleutel toe",
37
- "NoAPIKey": "OpenAI API-sleutel ontbreekt. Voeg een aangepaste OpenAI API-sleutel toe",
36
+ "AgentRuntimeError": "Lobe language model runtime execution error, please troubleshoot or retry based on the following information",
37
+ "AzureBizError": "Error requesting Azure AI service, please troubleshoot or retry based on the following information",
38
+ "BedrockBizError": "Error requesting Bedrock service, please troubleshoot or retry based on the following information",
39
+ "GoogleBizError": "Error requesting Google service, please troubleshoot or retry based on the following information",
40
+ "InvalidAccessCode": "Ongeldige toegangscode: het wachtwoord is onjuist of leeg. Voer de juiste toegangscode in of voeg een aangepaste API-sleutel toe.",
41
+ "InvalidAzureAPIKey": "Incorrect or empty Azure API Key, please check the Azure API Key and retry",
42
+ "InvalidBedrockCredentials": "Bedrock authentication failed, please check AccessKeyId/SecretAccessKey and retry",
43
+ "InvalidGoogleAPIKey": "Incorrect or empty Google API Key, please check the Google API Key and retry",
44
+ "InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
45
+ "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.",
46
+ "NoOpenAIAPIKey": "OpenAI API-sleutel ontbreekt. Voeg een aangepaste OpenAI API-sleutel toe",
38
47
  "OpenAIBizError": "Fout bij het aanvragen van OpenAI-service. Controleer de onderstaande informatie voor probleemoplossing of probeer opnieuw",
39
48
  "PluginApiNotFound": "Sorry, de API van de plug-inbeschrijvingslijst bestaat niet. Controleer of uw verzoeksmethode overeenkomt met de plug-inbeschrijvingslijst API",
40
49
  "PluginApiParamsError": "Sorry, de validatie van de invoerparameters van de plug-in is mislukt. Controleer of de invoerparameters overeenkomen met de API-beschrijving",
@@ -47,7 +56,8 @@
47
56
  "PluginMetaNotFound": "Sorry, de plug-in is niet gevonden in de index. Controleer of de plug-inconfiguratie in de index staat",
48
57
  "PluginOpenApiInitError": "Sorry, initialisatie van de OpenAPI-client is mislukt. Controleer of de configuratie van OpenAPI juist is",
49
58
  "PluginServerError": "Fout bij serverrespons voor plug-in. Controleer de foutinformatie hieronder voor uw plug-inbeschrijvingsbestand, plug-inconfiguratie of serverimplementatie",
50
- "PluginSettingsInvalid": "Deze plug-in moet correct geconfigureerd zijn voordat deze kan worden gebruikt. Controleer of uw configuratie juist is"
59
+ "PluginSettingsInvalid": "Deze plug-in moet correct geconfigureerd zijn voordat deze kan worden gebruikt. Controleer of uw configuratie juist is",
60
+ "ZhipuBizError": "Error requesting Zhipu service, please troubleshoot or retry based on the following information"
51
61
  },
52
62
  "stt": {
53
63
  "responseError": "Serviceverzoek mislukt. Controleer de configuratie of probeer opnieuw"
@@ -57,9 +67,24 @@
57
67
  },
58
68
  "unlock": {
59
69
  "apikey": {
60
- "addProxyUrl": "Voeg optionele OpenAI-proxyadres toe",
61
- "description": "Voer uw OpenAI API-sleutel in om een sessie te starten. De app slaat uw API-sleutel niet op.",
62
- "title": "Gebruik aangepaste API-sleutel"
70
+ "Bedrock": {
71
+ "customRegion": "Custom service region",
72
+ "description": "Enter your Aws AccessKeyId / SecretAccessKey to start the session. The app will not record your authentication configuration",
73
+ "title": "Use custom Bedrock authentication information"
74
+ },
75
+ "Google": {
76
+ "description": "Enter your Google API Key to start the session. The app will not record your API Key",
77
+ "title": "Use custom Google API Key"
78
+ },
79
+ "OpenAI": {
80
+ "addProxyUrl": "Add OpenAI proxy address (optional)",
81
+ "description": "Enter your OpenAI API Key to start the session. The app will not record your API Key",
82
+ "title": "Use custom OpenAI API Key"
83
+ },
84
+ "Zhipu": {
85
+ "description": "Enter your Zhipu API Key to start the session. The app will not record your API Key",
86
+ "title": "Use custom Zhipu API Key"
87
+ }
63
88
  },
64
89
  "closeMessage": "Sluit bericht",
65
90
  "confirm": "Bevestigen en opnieuw proberen",
@@ -67,6 +92,10 @@
67
92
  "description": "De beheerder heeft app-encryptie ingeschakeld. Voer het app-wachtwoord in om de app te ontgrendelen. Het wachtwoord hoeft slechts één keer te worden ingevoerd.",
68
93
  "placeholder": "Voer het wachtwoord in",
69
94
  "title": "Voer het wachtwoord in om de app te ontgrendelen"
95
+ },
96
+ "tabs": {
97
+ "apiKey": "Custom API Key",
98
+ "password": "Password"
70
99
  }
71
100
  }
72
101
  }