@lobehub/chat 0.145.11 → 0.145.13

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/CHANGELOG.md +58 -0
  2. package/locales/ar/common.json +1 -1
  3. package/locales/ar/error.json +7 -7
  4. package/locales/ar/setting.json +108 -108
  5. package/locales/bg-BG/common.json +1 -0
  6. package/locales/bg-BG/error.json +7 -1
  7. package/locales/bg-BG/setting.json +107 -91
  8. package/locales/de-DE/common.json +1 -1
  9. package/locales/de-DE/error.json +7 -7
  10. package/locales/de-DE/setting.json +106 -106
  11. package/locales/en-US/common.json +1 -1
  12. package/locales/en-US/error.json +7 -7
  13. package/locales/en-US/setting.json +66 -66
  14. package/locales/es-ES/common.json +1 -1
  15. package/locales/es-ES/error.json +7 -7
  16. package/locales/es-ES/setting.json +91 -91
  17. package/locales/fr-FR/common.json +1 -1
  18. package/locales/fr-FR/error.json +7 -7
  19. package/locales/fr-FR/setting.json +87 -87
  20. package/locales/it-IT/common.json +1 -1
  21. package/locales/it-IT/error.json +7 -7
  22. package/locales/it-IT/setting.json +111 -111
  23. package/locales/ja-JP/common.json +1 -1
  24. package/locales/ja-JP/error.json +7 -7
  25. package/locales/ja-JP/setting.json +101 -101
  26. package/locales/ko-KR/common.json +1 -1
  27. package/locales/ko-KR/error.json +7 -3
  28. package/locales/ko-KR/setting.json +82 -82
  29. package/locales/nl-NL/common.json +1 -1
  30. package/locales/nl-NL/error.json +10 -10
  31. package/locales/nl-NL/setting.json +112 -112
  32. package/locales/pl-PL/common.json +1 -1
  33. package/locales/pl-PL/error.json +12 -12
  34. package/locales/pl-PL/setting.json +102 -102
  35. package/locales/pt-BR/common.json +1 -1
  36. package/locales/pt-BR/error.json +7 -7
  37. package/locales/pt-BR/setting.json +104 -104
  38. package/locales/ru-RU/common.json +1 -1
  39. package/locales/ru-RU/error.json +7 -7
  40. package/locales/ru-RU/setting.json +113 -113
  41. package/locales/tr-TR/common.json +1 -1
  42. package/locales/tr-TR/error.json +7 -7
  43. package/locales/tr-TR/setting.json +113 -113
  44. package/locales/vi-VN/common.json +1 -1
  45. package/locales/vi-VN/error.json +7 -7
  46. package/locales/vi-VN/setting.json +81 -81
  47. package/locales/zh-CN/common.json +1 -1
  48. package/locales/zh-CN/error.json +6 -6
  49. package/locales/zh-CN/setting.json +39 -39
  50. package/locales/zh-TW/common.json +1 -1
  51. package/locales/zh-TW/error.json +7 -7
  52. package/locales/zh-TW/setting.json +70 -70
  53. package/package.json +1 -1
  54. package/src/app/api/auth/sso-providers/azure-ad.ts +1 -1
  55. package/src/app/settings/llm/Anthropic/index.tsx +3 -43
  56. package/src/app/settings/llm/Azure/index.tsx +10 -10
  57. package/src/app/settings/llm/Bedrock/index.tsx +9 -9
  58. package/src/app/settings/llm/Google/index.tsx +3 -29
  59. package/src/app/settings/llm/Groq/index.tsx +2 -28
  60. package/src/app/settings/llm/Mistral/index.tsx +2 -28
  61. package/src/app/settings/llm/Moonshot/index.tsx +2 -28
  62. package/src/app/settings/llm/Ollama/index.tsx +13 -32
  63. package/src/app/settings/llm/OpenAI/index.tsx +15 -17
  64. package/src/app/settings/llm/OpenRouter/index.tsx +3 -40
  65. package/src/app/settings/llm/Perplexity/index.tsx +2 -28
  66. package/src/app/settings/llm/TogetherAI/index.tsx +3 -44
  67. package/src/app/settings/llm/ZeroOne/index.tsx +2 -28
  68. package/src/app/settings/llm/Zhipu/index.tsx +2 -30
  69. package/src/app/settings/llm/components/ProviderConfig/index.tsx +73 -9
  70. package/src/app/settings/llm/const.ts +6 -0
  71. package/src/app/settings/tts/TTS/index.tsx +1 -1
  72. package/src/locales/default/error.ts +1 -1
  73. package/src/locales/default/setting.ts +30 -31
  74. package/src/locales/resources.ts +4 -0
@@ -31,7 +31,7 @@
31
31
  "sessionWithName": "세션 설정 · {{name}}"
32
32
  },
33
33
  "llm": {
34
- "Anthropic": {
34
+ "anthropic": {
35
35
  "endpoint": {
36
36
  "desc": "기본 주소 이외에 http(s)://를 포함해야 합니다",
37
37
  "placeholder": "https://api.anthropic.com",
@@ -39,207 +39,207 @@
39
39
  },
40
40
  "title": "Anthropic",
41
41
  "token": {
42
- "desc": "Anthropic API 키를 입력하세요",
42
+ "desc": "Anthropic에서 제공한 API 키를 입력하세요",
43
43
  "placeholder": "Anthropic API 키",
44
44
  "title": "API 키"
45
45
  }
46
46
  },
47
- "AzureOpenAI": {
47
+ "azure": {
48
48
  "azureApiVersion": {
49
- "desc": "Azure의 API 버전은 YYYY-MM-DD 형식을 따르며, [최신 버전](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)을 확인하세요.",
49
+ "desc": "Azure의 API 버전을 YYYY-MM-DD 형식으로 입력하고, [최신 버전](https://learn.microsoft.com/ko-kr/azure/ai-services/openai/reference#chat-completions)을 확인하세요",
50
50
  "fetch": "목록 가져오기",
51
51
  "title": "Azure API 버전"
52
52
  },
53
53
  "deployments": {
54
- "desc": "id=name 구문을 사용하여 배포 모델을 작성합니다(예: 배포 이름과 모델이 동일한 경우 모델 이름만 작성할 수 있습니다). 여러 모델은 쉼표(,)로 구분합니다.",
54
+ "desc": "id=name 형태로 사용할 모델을 입력하세요(배포 이름과 모델 이름이 같을 경우, 모델 이름만 입력해도 됩니다), 여러 모델을 입력할 때는 쉼표(,)로 구분",
55
55
  "title": "Azure 배포 모델 목록"
56
56
  },
57
57
  "endpoint": {
58
- "desc": "Azure 포털에서 리소스를 확인할 때 값을“키 엔드포인트” 섹션에서 찾을 수 있습니다",
58
+ "desc": "Azure 포털에서 리소스를 확인할 때 '키엔드포인트' 섹션에서 이 값을 찾을 수 있습니다",
59
59
  "placeholder": "https://docs-test-001.openai.azure.com",
60
60
  "title": "Azure API 주소"
61
61
  },
62
62
  "models": {
63
- "desc": "지원되는 모델",
63
+ "desc": "지원하는 모델",
64
64
  "title": "모델 목록"
65
65
  },
66
- "title": "Azure OpenAI 설정",
66
+ "title": "Azure OpenAI",
67
67
  "token": {
68
- "desc": "Azure 포털에서 리소스를 확인할 때 값을“키 엔드포인트” 섹션에서 찾을 수 있습니다. KEY1 또는 KEY2를 사용할 수 있습니다",
68
+ "desc": "Azure 포털에서 리소스를 확인할 때 '키엔드포인트' 섹션에서 이 값을 찾을 수 있습니다. KEY1 또는 KEY2를 사용할 수 있습니다",
69
69
  "placeholder": "Azure API 키",
70
70
  "title": "API 키"
71
71
  }
72
72
  },
73
- "Bedrock": {
73
+ "bedrock": {
74
74
  "accessKeyId": {
75
- "desc": "Aws Access Key Id를 입력하세요",
76
- "placeholder": "Aws Access Key Id",
77
- "title": "Aws Access Key Id"
75
+ "desc": "AWS Access Key Id를 입력하세요",
76
+ "placeholder": "AWS Access Id",
77
+ "title": "AWS Access Id"
78
78
  },
79
79
  "checker": {
80
- "desc": "AccessKeyId / SecretAccessKey 올바르게 입력했는지 테스트합니다"
80
+ "desc": "AccessKeyId / SecretAccessKey 올바르게 입력되었는지 테스트합니다"
81
81
  },
82
82
  "region": {
83
- "desc": "Aws 지역을 입력하세요",
84
- "placeholder": "Aws Region",
85
- "title": "Aws 지역"
83
+ "desc": "AWS Region을 입력하세요",
84
+ "placeholder": "AWS 리전",
85
+ "title": "AWS 리전"
86
86
  },
87
87
  "secretAccessKey": {
88
- "desc": "Aws Secret Access Key를 입력하세요",
89
- "placeholder": "Aws Secret Access Key",
90
- "title": "Aws Secret Access Key"
88
+ "desc": "AWS Secret Access 키를 입력하세요",
89
+ "placeholder": "AWS Secret Access ",
90
+ "title": "AWS Secret Access "
91
91
  },
92
92
  "title": "Bedrock"
93
93
  },
94
- "Google": {
94
+ "checker": {
95
+ "button": "확인",
96
+ "desc": "API Key 및 프록시 주소가 올바르게 입력되었는지 테스트합니다",
97
+ "pass": "확인 통과",
98
+ "title": "연결성 확인"
99
+ },
100
+ "google": {
95
101
  "title": "Google",
96
102
  "token": {
97
- "desc": "Google API Key를 입력하세요",
98
- "placeholder": "Google API Key",
99
- "title": "API Key"
103
+ "desc": "Google에서 제공한 API 키를 입력하세요",
104
+ "placeholder": "Google API ",
105
+ "title": "API "
100
106
  }
101
107
  },
102
- "Groq": {
108
+ "groq": {
103
109
  "title": "Groq",
104
110
  "token": {
105
- "desc": "Groq API 키를 입력하세요",
111
+ "desc": "Groq에서 제공한 API 키를 입력하세요",
106
112
  "placeholder": "Groq API 키",
107
113
  "title": "API 키"
108
114
  }
109
115
  },
110
- "Mistral": {
116
+ "mistral": {
111
117
  "title": "Mistral AI",
112
118
  "token": {
113
- "desc": "Mistral AI API 키를 입력하세요",
119
+ "desc": "Mistral AI에서 제공한 API 키를 입력하세요",
114
120
  "placeholder": "Mistral AI API 키",
115
121
  "title": "API 키"
116
122
  }
117
123
  },
118
- "Moonshot": {
119
- "title": "달의 그림자",
124
+ "moonshot": {
125
+ "title": "달의 어두운 면",
120
126
  "token": {
121
- "desc": "Moonshot AI에서 제공하는 API 키를 입력하세요",
127
+ "desc": "Moonshot AI에서 제공한 API 키를 입력하세요",
122
128
  "placeholder": "Moonshot AI API 키",
123
129
  "title": "API 키"
124
130
  }
125
131
  },
126
- "Ollama": {
132
+ "ollama": {
127
133
  "checker": {
128
- "desc": "프록시 주소가 올바르게 입력되었는지 확인합니다."
134
+ "desc": "프록시 주소가 올바로 입력되었는지 테스트합니다"
129
135
  },
130
136
  "customModelName": {
131
- "desc": "사용자 정의 모델을 추가하고, 여러 모델은 쉼표(,)로 구분합니다.",
132
- "placeholder": "비쿠나, 람라, 코데람라, 람라2:13b-텍스트",
137
+ "desc": "사용자 정의 모델 추가, 여러 모델을 입력할 때는 쉼표(,)로 구분",
138
+ "placeholder": "vicuna,llava,codellama,llama2:13b-text",
133
139
  "title": "사용자 정의 모델 이름"
134
140
  },
135
141
  "endpoint": {
136
- "desc": "Ollama 인터페이스 프록시 주소를 입력하고, 로컬에서 별도로 지정하지 않은 경우 비워 둡니다.",
142
+ "desc": "Ollama 인터페이스 프록시 주소를 입력하세요, 로컬에서 별도로 지정하지 않았으면 비워두면 됩니다",
137
143
  "placeholder": "http://127.0.0.1:11434/v1",
138
144
  "title": "인터페이스 프록시 주소"
139
145
  },
140
146
  "title": "Ollama"
141
147
  },
142
- "OpenAI": {
148
+ "openai": {
143
149
  "azureApiVersion": {
144
- "desc": "Azure의 API 버전으로 YYYY-MM-DD 형식을 따르며 [최신 버전](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)을 확인하세요",
150
+ "desc": "Azure의 API 버전을 YYYY-MM-DD 형식으로 입력하고, [최신 버전](https://learn.microsoft.com/ko-kr/azure/ai-services/openai/reference#chat-completions)을 확인하세요",
145
151
  "fetch": "목록 가져오기",
146
152
  "title": "Azure API 버전"
147
153
  },
148
154
  "customModelName": {
149
- "desc": "사용자 정의 모델 추가, 여러 모델은 쉼표(,)로 구분합니다",
150
- "placeholder": "모델1,모델2,모델3",
155
+ "desc": "사용자 정의 모델 추가, 여러 모델을 입력할 때는 쉼표(,)로 구분",
156
+ "placeholder": "model1,model2,model3",
151
157
  "title": "사용자 정의 모델 이름"
152
158
  },
153
159
  "endpoint": {
154
- "desc": "기본 주소 이외에 반드시 http(s)://를 포함해야 합니다",
160
+ "desc": "기본 주소 이외에 http(s)://를 포함해야 합니다",
155
161
  "placeholder": "https://api.openai.com/v1",
156
162
  "title": "인터페이스 프록시 주소"
157
163
  },
158
164
  "models": {
159
- "count": "{{count}}개의 모델 지원",
160
- "desc": "지원되는 모델",
165
+ "count": "{{count}} 모델 지원",
166
+ "desc": "지원하는 모델",
161
167
  "fetch": "모델 목록 가져오기",
162
- "notSupport": "Azure OpenAI는 모델 목록 조회를 지원하지 않습니다",
168
+ "notSupport": "Azure OpenAI는 현재 모델 목록 조회를 지원하지 않습니다",
163
169
  "notSupportTip": "배포 이름과 모델 이름이 일치하는지 직접 확인해야 합니다",
164
170
  "refetch": "모델 목록 다시 가져오기",
165
171
  "title": "모델 목록"
166
172
  },
167
- "title": "OpenAI 설정",
173
+ "title": "OpenAI",
168
174
  "token": {
169
- "desc": "자체 OpenAI 사용",
175
+ "desc": "자신의 OpenAI 키를 사용하세요",
170
176
  "placeholder": "OpenAI API 키",
171
- "title": "API 키"
177
+ "title": "OpenAI API 키"
172
178
  },
173
179
  "useAzure": {
174
- "desc": "Azure에서 제공하는 OpenAI 서비스 사용",
180
+ "desc": "Azure에서 제공하는 OpenAI 서비스를 사용하세요",
175
181
  "fetch": "목록 가져오기",
176
- "serverConfig": "관리자가 서버에서 Azure OpenAI를 구성했으므로 변경이 금지되었습니다",
182
+ "serverConfig": "관리자가 서버 측에서 Azure OpenAI를 설정하여 활성화한 경우, 전환을 금지합니다",
177
183
  "title": "Azure OpenAI"
178
184
  }
179
185
  },
180
- "OpenRouter": {
186
+ "openrouter": {
181
187
  "checker": {
182
- "desc": "프록시 주소가 올바르게 입력되었는지 확인합니다."
188
+ "desc": "프록시 주소가 올바로 입력되었는지 테스트합니다"
183
189
  },
184
190
  "customModelName": {
185
- "desc": "사용자 정의 모델을 추가하고, 여러 모델은 쉼표(,)로 구분합니다",
191
+ "desc": "사용자 정의 모델 추가, 여러 모델을 입력할 때는 쉼표(,)로 구분",
186
192
  "placeholder": "mistralai/mistral-7b-instruct:free,openchat/openchat-7b:free",
187
193
  "title": "사용자 정의 모델 이름"
188
194
  },
189
195
  "title": "OpenRouter",
190
196
  "token": {
191
- "desc": "OpenRouter AI에서 받은 API 키를 입력합니다.",
197
+ "desc": "OpenRouter AI에서 제공한 API 키를 입력하세요",
192
198
  "placeholder": "OpenRouter AI API 키",
193
199
  "title": "API 키"
194
200
  }
195
201
  },
196
- "TogetherAI": {
202
+ "perplexity": {
203
+ "title": "Perplexity",
204
+ "token": {
205
+ "desc": "Perplexity AI에서 제공한 API 키를 입력하세요",
206
+ "placeholder": "Perplexity AI API 키",
207
+ "title": "API 키"
208
+ }
209
+ },
210
+ "togetherai": {
197
211
  "checker": {
198
- "desc": "프록시 주소가 올바르게 입력되었는지 확인합니다."
212
+ "desc": "프록시 주소가 올바로 입력되었는지 테스트합니다"
199
213
  },
200
214
  "customModelName": {
201
- "desc": "사용자 정의 모델을 추가하고, 여러 모델은 쉼표(,)로 구분합니다",
202
- "placeholder": "mistralai/mistral-7b-instruct:free,openchat/openchat-7b:free",
215
+ "desc": "사용자 정의 모델 추가, 여러 모델을 입력할 때는 쉼표(,)로 구분",
216
+ "placeholder": "togethercomputer/Llama-2-7B-32K-Instruct,teknium/OpenHermes-2-Mistral-7B",
203
217
  "title": "사용자 정의 모델 이름"
204
218
  },
205
219
  "title": "TogetherAI",
206
220
  "token": {
207
- "desc": "TogetherAI AI에서 받은 API 키를 입력합니다.",
221
+ "desc": "TogetherAI AI에서 제공한 API 키를 입력하세요",
208
222
  "placeholder": "TogetherAI AI API 키",
209
223
  "title": "API 키"
210
224
  }
211
225
  },
212
- "Perplexity": {
213
- "title": "Perplexity",
226
+ "waitingForMore": "<1>계획에 따라 더 많은 모델이 추가될 예정</1>이니 기대해 주세요 ✨",
227
+ "zeroone": {
228
+ "title": "01.AI 제로원",
214
229
  "token": {
215
- "desc": "Perplexity AI 에서 제공하는 API 키를 입력하세요",
216
- "placeholder": "Perplexity AI API 키",
230
+ "desc": "01.AI 제로원에서 제공한 API 키를 입력하세요",
231
+ "placeholder": "01.AI 제로원 API 키",
217
232
  "title": "API 키"
218
233
  }
219
234
  },
220
- "ZeroOne": {
221
- "title": "01.AI ZeroOne 만물",
235
+ "zhipu": {
236
+ "title": "지푸",
222
237
  "token": {
223
- "desc": "01.AI ZeroOne의 API 키를 입력하세요",
224
- "placeholder": "01.AI ZeroOne API 키",
238
+ "desc": "지푸에서 제공한 API 키를 입력하세요",
239
+ "placeholder": "Zhipu API 키",
225
240
  "title": "API 키"
226
241
  }
227
- },
228
- "Zhipu": {
229
- "title": "智谱",
230
- "token": {
231
- "desc": "智谱의 API Key를 입력하세요",
232
- "placeholder": "Zhipu API Key",
233
- "title": "API Key"
234
- }
235
- },
236
- "checker": {
237
- "button": "확인",
238
- "desc": "API Key 및 프록시 주소가 올바르게 입력되었는지 테스트합니다",
239
- "pass": "확인 통과",
240
- "title": "연결성 확인"
241
- },
242
- "waitingForMore": "<1>계획에 따라 더 많은 모델이 추가될 예정</1>이니 기대해 주세요 ✨"
242
+ }
243
243
  },
244
244
  "ollama": {
245
245
  "download": {
@@ -107,8 +107,8 @@
107
107
  "oneapi": "One API",
108
108
  "openai": "OpenAI",
109
109
  "openrouter": "OpenRouter",
110
- "togetherai": "TogetherAI",
111
110
  "perplexity": "Perplexity",
111
+ "togetherai": "TogetherAI",
112
112
  "zeroone": "01.AI ZeroOne",
113
113
  "zhipu": "Zhipu AI"
114
114
  },
@@ -49,19 +49,18 @@
49
49
  "InvalidMoonshotAPIKey": "Moonshot AI API密钥不正确或为空,请检查Moonshot API密钥后重试",
50
50
  "InvalidOllamaArgs": "Ollama-configuratie is onjuist, controleer de Ollama-configuratie en probeer het opnieuw",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API Key is onjuist of leeg. Controleer de OpenRouter API Key en probeer het opnieuw.",
52
- "InvalidTogetherAIAPIKey": "TogetherAI API Key is onjuist of leeg. Controleer de TogetherAI API Key en probeer het opnieuw.",
53
52
  "InvalidPerplexityAPIKey": "Perplexity API Key is onjuist of leeg. Controleer de Perplexity API Key en probeer het opnieuw.",
54
- "InvalidZeroOneAPIKey": "零一万物 API Key 不正确或为空,请检查零一万物 API Key 后重试",
53
+ "InvalidTogetherAIAPIKey": "TogetherAI API Key is onjuist of leeg. Controleer de TogetherAI API Key en probeer het opnieuw.",
54
+ "InvalidZeroOneAPIKey": "Ongeldige ZeroOneAPI-sleutel of leeg, controleer de ZeroOneAPI-sleutel en probeer het opnieuw",
55
55
  "InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
56
56
  "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.",
57
57
  "MistralBizError": "Er is een fout opgetreden bij het aanroepen van de Mistral AI-service. Controleer de onderstaande informatie of probeer het opnieuw.",
58
- "MoonshotBizError": "请求月球AI服务出错,请根据以下信息排查或重试",
58
+ "MoonshotBizError": "Er is een fout opgetreden bij het aanroepen van de Moonshot-service. Controleer de volgende informatie of probeer het opnieuw.",
59
59
  "NoOpenAIAPIKey": "OpenAI API-sleutel ontbreekt. Voeg een aangepaste OpenAI API-sleutel toe",
60
60
  "OllamaBizError": "Fout bij het aanroepen van de Ollama-service, controleer de onderstaande informatie en probeer opnieuw",
61
- "OllamaServiceUnavailable": "Ollama 服务不可用,请检查是否已正常启动",
61
+ "OllamaServiceUnavailable": "De Ollama-service is niet beschikbaar. Controleer of deze correct is gestart.",
62
62
  "OpenAIBizError": "Fout bij het aanvragen van OpenAI-service. Controleer de onderstaande informatie voor probleemoplossing of probeer opnieuw",
63
63
  "OpenRouterBizError": "Fout bij het aanvragen van OpenRouter AI-service. Controleer de onderstaande informatie en probeer opnieuw.",
64
- "TogetherAIBizError": "Fout bij het aanvragen van TogetherAI AI-service. Controleer de onderstaande informatie en probeer opnieuw.",
65
64
  "PerplexityBizError": "Er is een fout opgetreden bij het aanvragen van de Perplexity AI-service. Controleer de onderstaande informatie en probeer het opnieuw.",
66
65
  "PluginApiNotFound": "Sorry, de API van de plug-inbeschrijvingslijst bestaat niet. Controleer of uw verzoeksmethode overeenkomt met de plug-inbeschrijvingslijst API",
67
66
  "PluginApiParamsError": "Sorry, de validatie van de invoerparameters van de plug-in is mislukt. Controleer of de invoerparameters overeenkomen met de API-beschrijving",
@@ -75,6 +74,7 @@
75
74
  "PluginOpenApiInitError": "Sorry, initialisatie van de OpenAPI-client is mislukt. Controleer of de configuratie van OpenAPI juist is",
76
75
  "PluginServerError": "Fout bij serverrespons voor plug-in. Controleer de foutinformatie hieronder voor uw plug-inbeschrijvingsbestand, plug-inconfiguratie of serverimplementatie",
77
76
  "PluginSettingsInvalid": "Deze plug-in moet correct geconfigureerd zijn voordat deze kan worden gebruikt. Controleer of uw configuratie juist is",
77
+ "TogetherAIBizError": "Fout bij het aanvragen van TogetherAI AI-service. Controleer de onderstaande informatie en probeer opnieuw.",
78
78
  "ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
79
79
  "ZhipuBizError": "Error requesting Zhipu service, please troubleshoot or retry based on the following information"
80
80
  },
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "Bedrock": {
94
94
  "customRegion": "Custom service region",
95
- "description": "Enter your Aws AccessKeyId / SecretAccessKey to start the session. The app will not record your authentication configuration",
95
+ "description": "Enter your AWS AccessKeyId / SecretAccessKey to start the session. The app will not record your authentication configuration",
96
96
  "title": "Use custom Bedrock authentication information"
97
97
  },
98
98
  "Google": {
@@ -120,14 +120,14 @@
120
120
  "description": "Voer uw OpenRouter API Key in om de sessie te starten. De app zal uw API Key niet opslaan.",
121
121
  "title": "Gebruik aangepaste OpenRouter API Key"
122
122
  },
123
- "TogetherAI": {
124
- "description": "Voer uw TogetherAI API Key in om de sessie te starten. De app zal uw API Key niet opslaan.",
125
- "title": "Gebruik aangepaste TogetherAI API Key"
126
- },
127
123
  "Perplexity": {
128
124
  "description": "Voer uw eigen Perplexity API Key in om het gesprek te starten. De app zal uw API Key niet opslaan.",
129
125
  "title": "Gebruik een aangepaste Perplexity API Key"
130
126
  },
127
+ "TogetherAI": {
128
+ "description": "Voer uw TogetherAI API Key in om de sessie te starten. De app zal uw API Key niet opslaan.",
129
+ "title": "Gebruik aangepaste TogetherAI API Key"
130
+ },
131
131
  "ZeroOne": {
132
132
  "description": "输入你的零一万物 API Key 即可开始会话。应用不会记录你的 API Key",
133
133
  "title": "使用自定义零一万物 API Key"