@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.
- package/CHANGELOG.md +58 -0
- package/locales/ar/common.json +1 -1
- package/locales/ar/error.json +7 -7
- package/locales/ar/setting.json +108 -108
- package/locales/bg-BG/common.json +1 -0
- package/locales/bg-BG/error.json +7 -1
- package/locales/bg-BG/setting.json +107 -91
- package/locales/de-DE/common.json +1 -1
- package/locales/de-DE/error.json +7 -7
- package/locales/de-DE/setting.json +106 -106
- package/locales/en-US/common.json +1 -1
- package/locales/en-US/error.json +7 -7
- package/locales/en-US/setting.json +66 -66
- package/locales/es-ES/common.json +1 -1
- package/locales/es-ES/error.json +7 -7
- package/locales/es-ES/setting.json +91 -91
- package/locales/fr-FR/common.json +1 -1
- package/locales/fr-FR/error.json +7 -7
- package/locales/fr-FR/setting.json +87 -87
- package/locales/it-IT/common.json +1 -1
- package/locales/it-IT/error.json +7 -7
- package/locales/it-IT/setting.json +111 -111
- package/locales/ja-JP/common.json +1 -1
- package/locales/ja-JP/error.json +7 -7
- package/locales/ja-JP/setting.json +101 -101
- package/locales/ko-KR/common.json +1 -1
- package/locales/ko-KR/error.json +7 -3
- package/locales/ko-KR/setting.json +82 -82
- package/locales/nl-NL/common.json +1 -1
- package/locales/nl-NL/error.json +10 -10
- package/locales/nl-NL/setting.json +112 -112
- package/locales/pl-PL/common.json +1 -1
- package/locales/pl-PL/error.json +12 -12
- package/locales/pl-PL/setting.json +102 -102
- package/locales/pt-BR/common.json +1 -1
- package/locales/pt-BR/error.json +7 -7
- package/locales/pt-BR/setting.json +104 -104
- package/locales/ru-RU/common.json +1 -1
- package/locales/ru-RU/error.json +7 -7
- package/locales/ru-RU/setting.json +113 -113
- package/locales/tr-TR/common.json +1 -1
- package/locales/tr-TR/error.json +7 -7
- package/locales/tr-TR/setting.json +113 -113
- package/locales/vi-VN/common.json +1 -1
- package/locales/vi-VN/error.json +7 -7
- package/locales/vi-VN/setting.json +81 -81
- package/locales/zh-CN/common.json +1 -1
- package/locales/zh-CN/error.json +6 -6
- package/locales/zh-CN/setting.json +39 -39
- package/locales/zh-TW/common.json +1 -1
- package/locales/zh-TW/error.json +7 -7
- package/locales/zh-TW/setting.json +70 -70
- package/package.json +1 -1
- package/src/app/api/auth/sso-providers/azure-ad.ts +1 -1
- package/src/app/settings/llm/Anthropic/index.tsx +3 -43
- package/src/app/settings/llm/Azure/index.tsx +10 -10
- package/src/app/settings/llm/Bedrock/index.tsx +9 -9
- package/src/app/settings/llm/Google/index.tsx +3 -29
- package/src/app/settings/llm/Groq/index.tsx +2 -28
- package/src/app/settings/llm/Mistral/index.tsx +2 -28
- package/src/app/settings/llm/Moonshot/index.tsx +2 -28
- package/src/app/settings/llm/Ollama/index.tsx +13 -32
- package/src/app/settings/llm/OpenAI/index.tsx +15 -17
- package/src/app/settings/llm/OpenRouter/index.tsx +3 -40
- package/src/app/settings/llm/Perplexity/index.tsx +2 -28
- package/src/app/settings/llm/TogetherAI/index.tsx +3 -44
- package/src/app/settings/llm/ZeroOne/index.tsx +2 -28
- package/src/app/settings/llm/Zhipu/index.tsx +2 -30
- package/src/app/settings/llm/components/ProviderConfig/index.tsx +73 -9
- package/src/app/settings/llm/const.ts +6 -0
- package/src/app/settings/tts/TTS/index.tsx +1 -1
- package/src/locales/default/error.ts +1 -1
- package/src/locales/default/setting.ts +30 -31
- package/src/locales/resources.ts +4 -0
|
@@ -31,215 +31,215 @@
|
|
|
31
31
|
"sessionWithName": "Sitzungseinstellungen · {{name}}"
|
|
32
32
|
},
|
|
33
33
|
"llm": {
|
|
34
|
-
"
|
|
34
|
+
"anthropic": {
|
|
35
35
|
"endpoint": {
|
|
36
|
-
"desc": "Muss
|
|
36
|
+
"desc": "Muss neben der Standardadresse auch http(s):// enthalten",
|
|
37
37
|
"placeholder": "https://api.anthropic.com",
|
|
38
38
|
"title": "API-Proxy-Adresse"
|
|
39
39
|
},
|
|
40
40
|
"title": "Anthropic",
|
|
41
41
|
"token": {
|
|
42
|
-
"desc": "Geben Sie
|
|
43
|
-
"placeholder": "Anthropic API
|
|
44
|
-
"title": "API
|
|
42
|
+
"desc": "Geben Sie Ihren API-Key von Anthropic ein",
|
|
43
|
+
"placeholder": "Anthropic API Key",
|
|
44
|
+
"title": "API Key"
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
|
-
"
|
|
47
|
+
"azure": {
|
|
48
48
|
"azureApiVersion": {
|
|
49
|
-
"desc": "Die API-Version von Azure
|
|
50
|
-
"fetch": "
|
|
51
|
-
"title": "Azure
|
|
49
|
+
"desc": "Die API-Version von Azure im Format JJJJ-MM-TT, siehe [neueste Version](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)",
|
|
50
|
+
"fetch": "Liste abrufen",
|
|
51
|
+
"title": "Azure-API-Version"
|
|
52
52
|
},
|
|
53
53
|
"deployments": {
|
|
54
|
-
"desc": "
|
|
55
|
-
"title": "Azure
|
|
54
|
+
"desc": "Füllen Sie Ihre Bereitstellungsmodelle mit der Syntax id=name aus (wenn der Bereitstellungsname und der Modellname gleich sind, können Sie nur den Modellnamen angeben), verwenden Sie Kommas (,) um mehrere Modelle zu trennen",
|
|
55
|
+
"title": "Liste der Azure-Bereitstellungsmodelle"
|
|
56
56
|
},
|
|
57
57
|
"endpoint": {
|
|
58
|
-
"desc": "Diesen Wert finden Sie im Abschnitt
|
|
58
|
+
"desc": "Diesen Wert finden Sie im Abschnitt 'Schlüssel und Endpunkte', wenn Sie in Azure Portal Ihre Ressource überprüfen",
|
|
59
59
|
"placeholder": "https://docs-test-001.openai.azure.com",
|
|
60
|
-
"title": "Azure
|
|
60
|
+
"title": "Azure-API-Adresse"
|
|
61
61
|
},
|
|
62
62
|
"models": {
|
|
63
63
|
"desc": "Unterstützte Modelle",
|
|
64
64
|
"title": "Modellliste"
|
|
65
65
|
},
|
|
66
|
-
"title": "Azure OpenAI
|
|
66
|
+
"title": "Azure OpenAI",
|
|
67
67
|
"token": {
|
|
68
|
-
"desc": "Diesen Wert finden Sie im Abschnitt
|
|
69
|
-
"placeholder": "Azure API
|
|
70
|
-
"title": "API
|
|
68
|
+
"desc": "Diesen Wert finden Sie im Abschnitt 'Schlüssel und Endpunkte', wenn Sie in Azure Portal Ihre Ressource überprüfen. Sie können KEY1 oder KEY2 verwenden",
|
|
69
|
+
"placeholder": "Azure API Key",
|
|
70
|
+
"title": "API Key"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
|
-
"
|
|
73
|
+
"bedrock": {
|
|
74
74
|
"accessKeyId": {
|
|
75
|
-
"desc": "Geben Sie
|
|
76
|
-
"placeholder": "AWS Access Key
|
|
77
|
-
"title": "AWS Access Key
|
|
75
|
+
"desc": "Geben Sie Ihre AWS Access Key Id ein",
|
|
76
|
+
"placeholder": "AWS Access Key Id",
|
|
77
|
+
"title": "AWS Access Key Id"
|
|
78
78
|
},
|
|
79
79
|
"checker": {
|
|
80
|
-
"desc": "
|
|
80
|
+
"desc": "Testen Sie, ob AccessKeyId / SecretAccessKey korrekt eingegeben wurden"
|
|
81
81
|
},
|
|
82
82
|
"region": {
|
|
83
|
-
"desc": "Geben Sie
|
|
84
|
-
"placeholder": "AWS
|
|
85
|
-
"title": "AWS
|
|
83
|
+
"desc": "Geben Sie Ihre AWS Region ein",
|
|
84
|
+
"placeholder": "AWS Region",
|
|
85
|
+
"title": "AWS Region"
|
|
86
86
|
},
|
|
87
87
|
"secretAccessKey": {
|
|
88
|
-
"desc": "Geben Sie
|
|
88
|
+
"desc": "Geben Sie Ihren AWS Secret Access Key ein",
|
|
89
89
|
"placeholder": "AWS Secret Access Key",
|
|
90
90
|
"title": "AWS Secret Access Key"
|
|
91
91
|
},
|
|
92
92
|
"title": "Bedrock"
|
|
93
93
|
},
|
|
94
|
-
"
|
|
94
|
+
"checker": {
|
|
95
|
+
"button": "Überprüfen",
|
|
96
|
+
"desc": "Überprüfen Sie, ob der API-Schlüssel und die Proxy-Adresse korrekt eingegeben wurden",
|
|
97
|
+
"pass": "Überprüfung bestanden",
|
|
98
|
+
"title": "Konnektivitätsprüfung"
|
|
99
|
+
},
|
|
100
|
+
"google": {
|
|
95
101
|
"title": "Google",
|
|
96
102
|
"token": {
|
|
97
|
-
"desc": "Geben Sie
|
|
103
|
+
"desc": "Geben Sie Ihren API-Key von Google ein",
|
|
98
104
|
"placeholder": "Google API Key",
|
|
99
|
-
"title": "API
|
|
105
|
+
"title": "API Key"
|
|
100
106
|
}
|
|
101
107
|
},
|
|
102
|
-
"
|
|
108
|
+
"groq": {
|
|
103
109
|
"title": "Groq",
|
|
104
110
|
"token": {
|
|
105
|
-
"desc": "Geben Sie
|
|
106
|
-
"placeholder": "Groq API
|
|
107
|
-
"title": "API
|
|
111
|
+
"desc": "Geben Sie Ihren API-Key von Groq ein",
|
|
112
|
+
"placeholder": "Groq API Key",
|
|
113
|
+
"title": "API Key"
|
|
108
114
|
}
|
|
109
115
|
},
|
|
110
|
-
"
|
|
111
|
-
"title": "Mistral
|
|
116
|
+
"mistral": {
|
|
117
|
+
"title": "Mistral AI",
|
|
112
118
|
"token": {
|
|
113
|
-
"desc": "Geben Sie
|
|
114
|
-
"placeholder": "Mistral
|
|
115
|
-
"title": "API
|
|
119
|
+
"desc": "Geben Sie Ihren API-Key von Mistral AI ein",
|
|
120
|
+
"placeholder": "Mistral AI API Key",
|
|
121
|
+
"title": "API Key"
|
|
116
122
|
}
|
|
117
123
|
},
|
|
118
|
-
"
|
|
119
|
-
"title": "
|
|
124
|
+
"moonshot": {
|
|
125
|
+
"title": "Moonshot AI",
|
|
120
126
|
"token": {
|
|
121
|
-
"desc": "Geben Sie
|
|
122
|
-
"placeholder": "Moonshot AI API
|
|
123
|
-
"title": "API
|
|
127
|
+
"desc": "Geben Sie Ihren API-Key von Moonshot AI ein",
|
|
128
|
+
"placeholder": "Moonshot AI API Key",
|
|
129
|
+
"title": "API Key"
|
|
124
130
|
}
|
|
125
131
|
},
|
|
126
|
-
"
|
|
132
|
+
"ollama": {
|
|
127
133
|
"checker": {
|
|
128
|
-
"desc": "
|
|
134
|
+
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
|
129
135
|
},
|
|
130
136
|
"customModelName": {
|
|
131
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu
|
|
132
|
-
"placeholder": "
|
|
137
|
+
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
138
|
+
"placeholder": "vicuna,llava,codellama,llama2:13b-text",
|
|
133
139
|
"title": "Benutzerdefinierte Modellnamen"
|
|
134
140
|
},
|
|
135
141
|
"endpoint": {
|
|
136
|
-
"desc": "Geben Sie die
|
|
142
|
+
"desc": "Geben Sie die Proxy-Adresse der Ollama-Schnittstelle ein, leer lassen, wenn lokal nicht spezifiziert",
|
|
137
143
|
"placeholder": "http://127.0.0.1:11434/v1",
|
|
138
|
-
"title": "Proxy-
|
|
144
|
+
"title": "Schnittstellen-Proxy-Adresse"
|
|
139
145
|
},
|
|
140
146
|
"title": "Ollama"
|
|
141
147
|
},
|
|
142
|
-
"
|
|
148
|
+
"openai": {
|
|
143
149
|
"azureApiVersion": {
|
|
144
|
-
"desc": "Die API-Version von Azure
|
|
150
|
+
"desc": "Die API-Version von Azure im Format JJJJ-MM-TT, siehe [neueste Version](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)",
|
|
145
151
|
"fetch": "Liste abrufen",
|
|
146
|
-
"title": "Azure
|
|
152
|
+
"title": "Azure-API-Version"
|
|
147
153
|
},
|
|
148
154
|
"customModelName": {
|
|
149
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu
|
|
150
|
-
"placeholder": "
|
|
155
|
+
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
156
|
+
"placeholder": "model1,model2,model3",
|
|
151
157
|
"title": "Benutzerdefinierte Modellnamen"
|
|
152
158
|
},
|
|
153
159
|
"endpoint": {
|
|
154
|
-
"desc": "Muss
|
|
160
|
+
"desc": "Muss neben der Standardadresse auch http(s):// enthalten",
|
|
155
161
|
"placeholder": "https://api.openai.com/v1",
|
|
156
|
-
"title": "
|
|
162
|
+
"title": "Schnittstellen-Proxy-Adresse"
|
|
157
163
|
},
|
|
158
164
|
"models": {
|
|
159
|
-
"count": "
|
|
165
|
+
"count": "Unterstützt insgesamt {{count}} Modelle",
|
|
160
166
|
"desc": "Unterstützte Modelle",
|
|
161
|
-
"fetch": "
|
|
162
|
-
"notSupport": "Azure OpenAI unterstützt derzeit
|
|
163
|
-
"notSupportTip": "Sie müssen sicherstellen, dass der Bereitstellungsname mit dem Modellnamen übereinstimmt",
|
|
164
|
-
"refetch": "
|
|
167
|
+
"fetch": "Modellliste abrufen",
|
|
168
|
+
"notSupport": "Azure OpenAI unterstützt das Anzeigen der Modellliste derzeit nicht",
|
|
169
|
+
"notSupportTip": "Sie müssen selbst sicherstellen, dass der Bereitstellungsname mit dem Modellnamen übereinstimmt",
|
|
170
|
+
"refetch": "Modellliste erneut abrufen",
|
|
165
171
|
"title": "Modellliste"
|
|
166
172
|
},
|
|
167
|
-
"title": "OpenAI
|
|
173
|
+
"title": "OpenAI",
|
|
168
174
|
"token": {
|
|
169
|
-
"desc": "Verwenden Sie Ihren eigenen OpenAI-
|
|
170
|
-
"placeholder": "OpenAI API
|
|
171
|
-
"title": "API
|
|
175
|
+
"desc": "Verwenden Sie Ihren eigenen OpenAI-Key",
|
|
176
|
+
"placeholder": "OpenAI API Key",
|
|
177
|
+
"title": "OpenAI API Key"
|
|
172
178
|
},
|
|
173
179
|
"useAzure": {
|
|
174
|
-
"desc": "Verwenden Sie den von Azure
|
|
180
|
+
"desc": "Verwenden Sie den OpenAI-Dienst bereitgestellt von Azure",
|
|
175
181
|
"fetch": "Liste abrufen",
|
|
176
|
-
"serverConfig": "Der Administrator hat
|
|
177
|
-
"title": "Azure OpenAI
|
|
182
|
+
"serverConfig": "Der Administrator hat auf dem Server Azure OpenAI konfiguriert, das Umschalten ist verboten",
|
|
183
|
+
"title": "Azure OpenAI"
|
|
178
184
|
}
|
|
179
185
|
},
|
|
180
|
-
"
|
|
186
|
+
"openrouter": {
|
|
181
187
|
"checker": {
|
|
182
|
-
"desc": "
|
|
188
|
+
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
|
183
189
|
},
|
|
184
190
|
"customModelName": {
|
|
185
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu
|
|
191
|
+
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
186
192
|
"placeholder": "mistralai/mistral-7b-instruct:free,openchat/openchat-7b:free",
|
|
187
193
|
"title": "Benutzerdefinierte Modellnamen"
|
|
188
194
|
},
|
|
189
195
|
"title": "OpenRouter",
|
|
190
196
|
"token": {
|
|
191
|
-
"desc": "Geben Sie
|
|
192
|
-
"placeholder": "OpenRouter AI API
|
|
193
|
-
"title": "API
|
|
197
|
+
"desc": "Geben Sie Ihren API-Key von OpenRouter AI ein",
|
|
198
|
+
"placeholder": "OpenRouter AI API Key",
|
|
199
|
+
"title": "API Key"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"perplexity": {
|
|
203
|
+
"title": "Perplexity",
|
|
204
|
+
"token": {
|
|
205
|
+
"desc": "Geben Sie Ihren API-Key von Perplexity AI ein",
|
|
206
|
+
"placeholder": "Perplexity AI API Key",
|
|
207
|
+
"title": "API Key"
|
|
194
208
|
}
|
|
195
209
|
},
|
|
196
|
-
"
|
|
210
|
+
"togetherai": {
|
|
197
211
|
"checker": {
|
|
198
|
-
"desc": "
|
|
212
|
+
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
|
199
213
|
},
|
|
200
214
|
"customModelName": {
|
|
201
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu
|
|
202
|
-
"placeholder": "
|
|
215
|
+
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
216
|
+
"placeholder": "togethercomputer/Llama-2-7B-32K-Instruct,teknium/OpenHermes-2-Mistral-7B",
|
|
203
217
|
"title": "Benutzerdefinierte Modellnamen"
|
|
204
218
|
},
|
|
205
219
|
"title": "TogetherAI",
|
|
206
220
|
"token": {
|
|
207
|
-
"desc": "Geben Sie
|
|
208
|
-
"placeholder": "TogetherAI AI API
|
|
209
|
-
"title": "API
|
|
221
|
+
"desc": "Geben Sie Ihren API-Key von TogetherAI AI ein",
|
|
222
|
+
"placeholder": "TogetherAI AI API Key",
|
|
223
|
+
"title": "API Key"
|
|
210
224
|
}
|
|
211
225
|
},
|
|
212
|
-
"
|
|
213
|
-
|
|
226
|
+
"waitingForMore": "Weitere Modelle werden <1>geplant</1>, bitte freuen Sie sich auf weitere Updates ✨",
|
|
227
|
+
"zeroone": {
|
|
228
|
+
"title": "01.AI Alles und Nichts",
|
|
214
229
|
"token": {
|
|
215
|
-
"desc": "Geben Sie
|
|
216
|
-
"placeholder": "
|
|
217
|
-
"title": "API
|
|
230
|
+
"desc": "Geben Sie Ihren API-Key von 01.AI Alles und Nichts ein",
|
|
231
|
+
"placeholder": "01.AI Alles und Nichts API Key",
|
|
232
|
+
"title": "API Key"
|
|
218
233
|
}
|
|
219
234
|
},
|
|
220
|
-
"
|
|
221
|
-
"title": "
|
|
235
|
+
"zhipu": {
|
|
236
|
+
"title": "Zhipu",
|
|
222
237
|
"token": {
|
|
223
|
-
"desc": "Geben Sie
|
|
224
|
-
"placeholder": "01.AI ZeroOne API-Schlüssel",
|
|
225
|
-
"title": "API-Schlüssel"
|
|
226
|
-
}
|
|
227
|
-
},
|
|
228
|
-
"Zhipu": {
|
|
229
|
-
"title": "Zhipu AI",
|
|
230
|
-
"token": {
|
|
231
|
-
"desc": "Geben Sie den API-Schlüssel von Zhipu ein",
|
|
238
|
+
"desc": "Geben Sie Ihren API-Key von Zhipu ein",
|
|
232
239
|
"placeholder": "Zhipu API Key",
|
|
233
|
-
"title": "API
|
|
240
|
+
"title": "API Key"
|
|
234
241
|
}
|
|
235
|
-
}
|
|
236
|
-
"checker": {
|
|
237
|
-
"button": "Überprüfen",
|
|
238
|
-
"desc": "Überprüfen Sie, ob der API-Schlüssel und die Proxy-Adresse korrekt eingegeben wurden",
|
|
239
|
-
"pass": "Überprüfung bestanden",
|
|
240
|
-
"title": "Konnektivitätsprüfung"
|
|
241
|
-
},
|
|
242
|
-
"waitingForMore": "Weitere Modelle werden <1>geplant</1>, bitte freuen Sie sich auf weitere Updates ✨"
|
|
242
|
+
}
|
|
243
243
|
},
|
|
244
244
|
"ollama": {
|
|
245
245
|
"download": {
|
package/locales/en-US/error.json
CHANGED
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"InvalidMoonshotAPIKey": "The Moonshot AI API Key is incorrect or empty, please check the Moonshot API Key and try again.",
|
|
50
50
|
"InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
|
|
51
51
|
"InvalidOpenRouterAPIKey": "Invalid or empty OpenRouter API Key. Please check your OpenRouter API Key and try again.",
|
|
52
|
-
"InvalidTogetherAIAPIKey": "Invalid or empty TogetherAI API Key. Please check your TogetherAI API Key and try again.",
|
|
53
52
|
"InvalidPerplexityAPIKey": "Perplexity API Key is incorrect or empty. Please check the Perplexity API Key and retry.",
|
|
53
|
+
"InvalidTogetherAIAPIKey": "Invalid or empty TogetherAI API Key. Please check your TogetherAI API Key and try again.",
|
|
54
54
|
"InvalidZeroOneAPIKey": "01-AI API Key is incorrect or empty. Please check the 01-AI API Key and retry.",
|
|
55
55
|
"InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
|
|
56
56
|
"LocationNotSupportError": "We're sorry, your current location does not support this model service. This may be due to regional restrictions or the service not being available. Please confirm if the current location supports using this service, or try using a different location.",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"OllamaServiceUnavailable": "Ollama service not detected, please check if it is running properly",
|
|
62
62
|
"OpenAIBizError": "Error requesting OpenAI service. Please troubleshoot or retry based on the following information.",
|
|
63
63
|
"OpenRouterBizError": "Error requesting OpenRouter AI service. Please troubleshoot or retry based on the following information.",
|
|
64
|
-
"TogetherAIBizError": "Error requesting TogetherAI AI service. Please troubleshoot or retry based on the following information.",
|
|
65
64
|
"PerplexityBizError": "Error requesting Perplexity AI service. Please troubleshoot or retry based on the following information.",
|
|
66
65
|
"PluginApiNotFound": "Sorry, the API does not exist in the plugin's manifest. Please check if your request method matches the plugin manifest API",
|
|
67
66
|
"PluginApiParamsError": "Sorry, the input parameter validation for the plugin request failed. Please check if the input parameters match the API description",
|
|
@@ -75,6 +74,7 @@
|
|
|
75
74
|
"PluginOpenApiInitError": "Sorry, the OpenAPI client failed to initialize. Please check if the OpenAPI configuration information is correct.",
|
|
76
75
|
"PluginServerError": "Plugin server request returned an error. Please check your plugin manifest file, plugin configuration, or server implementation based on the error information below",
|
|
77
76
|
"PluginSettingsInvalid": "This plugin needs to be correctly configured before it can be used. Please check if your configuration is correct",
|
|
77
|
+
"TogetherAIBizError": "Error requesting TogetherAI AI service. Please troubleshoot or retry based on the following information.",
|
|
78
78
|
"ZeroOneBizError": "Error requesting 01-AI service. Please troubleshoot or retry based on the following information.",
|
|
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
|
|
95
|
+
"description": "Enter your AWS AccessKeyId / SecretAccessKey to start the session. The app will not store your authentication configuration.",
|
|
96
96
|
"title": "Use custom Bedrock authentication information"
|
|
97
97
|
},
|
|
98
98
|
"Google": {
|
|
@@ -120,14 +120,14 @@
|
|
|
120
120
|
"description": "Enter your OpenRouter API Key to start the session. The application will not store your API Key.",
|
|
121
121
|
"title": "Use Custom OpenRouter API Key"
|
|
122
122
|
},
|
|
123
|
-
"TogetherAI": {
|
|
124
|
-
"description": "Enter your TogetherAI API Key to start the session. The application will not store your API Key.",
|
|
125
|
-
"title": "Use Custom TogetherAI API Key"
|
|
126
|
-
},
|
|
127
123
|
"Perplexity": {
|
|
128
124
|
"description": "Enter your Perplexity API Key to start the session. The app will not store your API Key.",
|
|
129
125
|
"title": "Use custom Perplexity API Key"
|
|
130
126
|
},
|
|
127
|
+
"TogetherAI": {
|
|
128
|
+
"description": "Enter your TogetherAI API Key to start the session. The application will not store your API Key.",
|
|
129
|
+
"title": "Use Custom TogetherAI API Key"
|
|
130
|
+
},
|
|
131
131
|
"ZeroOne": {
|
|
132
132
|
"description": "Enter your 01-AI API Key to start the session. The application will not store your API Key.",
|
|
133
133
|
"title": "Use Custom 01-AI API Key"
|