@lobehub/chat 0.162.16 → 0.162.18
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/.env.example +4 -0
- package/CHANGELOG.md +50 -0
- package/Dockerfile +3 -0
- package/README.md +1 -0
- package/README.zh-CN.md +1 -0
- package/docs/self-hosting/advanced/settings-url-share.mdx +89 -57
- package/docs/self-hosting/advanced/settings-url-share.zh-CN.mdx +87 -56
- package/docs/self-hosting/advanced/upstream-sync.mdx +1 -1
- package/docs/self-hosting/environment-variables/model-provider.mdx +10 -1
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +9 -0
- package/docs/usage/features/multi-ai-providers.mdx +1 -0
- package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
- package/locales/ar/error.json +7 -37
- package/locales/ar/modelProvider.json +15 -171
- package/locales/ar/setting.json +5 -8
- package/locales/bg-BG/error.json +6 -36
- package/locales/bg-BG/modelProvider.json +15 -171
- package/locales/bg-BG/setting.json +5 -8
- package/locales/de-DE/error.json +6 -36
- package/locales/de-DE/modelProvider.json +15 -171
- package/locales/de-DE/setting.json +5 -8
- package/locales/en-US/error.json +6 -36
- package/locales/en-US/modelProvider.json +15 -171
- package/locales/en-US/setting.json +6 -9
- package/locales/es-ES/error.json +6 -36
- package/locales/es-ES/modelProvider.json +15 -171
- package/locales/es-ES/setting.json +5 -8
- package/locales/fr-FR/error.json +6 -36
- package/locales/fr-FR/modelProvider.json +15 -171
- package/locales/fr-FR/setting.json +9 -12
- package/locales/it-IT/error.json +6 -36
- package/locales/it-IT/modelProvider.json +15 -171
- package/locales/it-IT/setting.json +5 -8
- package/locales/ja-JP/error.json +6 -36
- package/locales/ja-JP/modelProvider.json +15 -171
- package/locales/ja-JP/setting.json +5 -8
- package/locales/ko-KR/error.json +6 -36
- package/locales/ko-KR/modelProvider.json +15 -171
- package/locales/ko-KR/setting.json +5 -8
- package/locales/nl-NL/error.json +6 -36
- package/locales/nl-NL/modelProvider.json +15 -171
- package/locales/nl-NL/setting.json +5 -8
- package/locales/pl-PL/error.json +6 -36
- package/locales/pl-PL/modelProvider.json +15 -171
- package/locales/pl-PL/setting.json +6 -9
- package/locales/pt-BR/error.json +6 -36
- package/locales/pt-BR/modelProvider.json +15 -171
- package/locales/pt-BR/setting.json +5 -8
- package/locales/ru-RU/error.json +6 -36
- package/locales/ru-RU/modelProvider.json +15 -171
- package/locales/ru-RU/setting.json +5 -8
- package/locales/tr-TR/error.json +6 -36
- package/locales/tr-TR/modelProvider.json +15 -171
- package/locales/tr-TR/setting.json +5 -8
- package/locales/vi-VN/error.json +6 -36
- package/locales/vi-VN/modelProvider.json +15 -171
- package/locales/vi-VN/setting.json +5 -8
- package/locales/zh-CN/error.json +7 -37
- package/locales/zh-CN/modelProvider.json +15 -171
- package/locales/zh-CN/setting.json +5 -8
- package/locales/zh-TW/error.json +7 -37
- package/locales/zh-TW/modelProvider.json +15 -171
- package/locales/zh-TW/setting.json +5 -8
- package/package.json +1 -2
- package/src/app/(main)/settings/llm/ProviderList/Azure/index.tsx +107 -0
- package/src/app/(main)/settings/llm/ProviderList/Bedrock/index.tsx +68 -0
- package/src/app/(main)/settings/llm/ProviderList/Ollama/index.tsx +29 -0
- package/src/app/(main)/settings/llm/ProviderList/OpenAI/index.tsx +20 -0
- package/src/app/(main)/settings/llm/ProviderList/providers.tsx +141 -0
- package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +18 -27
- package/src/app/(main)/settings/llm/index.tsx +7 -34
- package/src/app/(main)/settings/llm/type.ts +5 -0
- package/src/app/api/chat/[provider]/route.ts +8 -3
- package/src/app/api/chat/agentRuntime.test.ts +17 -0
- package/src/app/api/chat/agentRuntime.ts +7 -0
- package/src/app/api/errorResponse.test.ts +7 -89
- package/src/app/api/errorResponse.ts +6 -43
- package/src/app/api/middleware/auth/index.ts +7 -3
- package/src/components/ModelProviderIcon/index.tsx +5 -0
- package/src/components/ModelSelect/index.tsx +7 -10
- package/src/config/llm.ts +6 -0
- package/src/config/modelProviders/anthropic.ts +5 -0
- package/src/config/modelProviders/azure.ts +2 -0
- package/src/config/modelProviders/bedrock.ts +2 -0
- package/src/config/modelProviders/deepseek.ts +4 -1
- package/src/config/modelProviders/google.ts +5 -0
- package/src/config/modelProviders/groq.ts +5 -0
- package/src/config/modelProviders/index.ts +4 -0
- package/src/config/modelProviders/minimax.ts +2 -0
- package/src/config/modelProviders/mistral.ts +2 -0
- package/src/config/modelProviders/moonshot.ts +2 -0
- package/src/config/modelProviders/ollama.ts +4 -0
- package/src/config/modelProviders/openai.ts +3 -0
- package/src/config/modelProviders/openrouter.ts +3 -0
- package/src/config/modelProviders/perplexity.ts +5 -0
- package/src/config/modelProviders/qwen.ts +35 -0
- package/src/config/modelProviders/togetherai.ts +3 -0
- package/src/config/modelProviders/zeroone.ts +4 -2
- package/src/config/modelProviders/zhipu.ts +2 -0
- package/src/const/settings/llm.ts +5 -0
- package/src/features/Conversation/Error/APIKeyForm/ProviderApiKeyForm.tsx +6 -3
- package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +5 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +4 -0
- package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel/index.tsx +11 -14
- package/src/features/Conversation/Error/index.tsx +29 -19
- package/src/features/Conversation/components/ChatItem/index.tsx +4 -13
- package/src/features/ModelSelect/index.tsx +1 -1
- package/src/features/ModelSwitchPanel/index.tsx +1 -1
- package/src/hooks/useProviderName.ts +8 -0
- package/src/libs/agent-runtime/AgentRuntime.ts +8 -1
- package/src/libs/agent-runtime/anthropic/index.test.ts +8 -5
- package/src/libs/agent-runtime/anthropic/index.ts +3 -3
- package/src/libs/agent-runtime/azureOpenai/index.test.ts +5 -2
- package/src/libs/agent-runtime/azureOpenai/index.ts +2 -2
- package/src/libs/agent-runtime/bedrock/index.test.ts +2 -2
- package/src/libs/agent-runtime/bedrock/index.ts +2 -2
- package/src/libs/agent-runtime/deepseek/index.test.ts +3 -2
- package/src/libs/agent-runtime/deepseek/index.ts +0 -5
- package/src/libs/agent-runtime/error.ts +11 -43
- package/src/libs/agent-runtime/google/index.test.ts +3 -4
- package/src/libs/agent-runtime/google/index.ts +4 -4
- package/src/libs/agent-runtime/groq/index.test.ts +3 -2
- package/src/libs/agent-runtime/groq/index.ts +0 -4
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/minimax/index.test.ts +3 -2
- package/src/libs/agent-runtime/minimax/index.ts +5 -5
- package/src/libs/agent-runtime/mistral/index.test.ts +2 -2
- package/src/libs/agent-runtime/mistral/index.ts +0 -5
- package/src/libs/agent-runtime/moonshot/index.test.ts +3 -2
- package/src/libs/agent-runtime/moonshot/index.ts +0 -5
- package/src/libs/agent-runtime/openrouter/index.test.ts +3 -2
- package/src/libs/agent-runtime/openrouter/index.ts +0 -6
- package/src/libs/agent-runtime/perplexity/index.test.ts +2 -2
- package/src/libs/agent-runtime/perplexity/index.ts +0 -5
- package/src/libs/agent-runtime/qwen/index.test.ts +251 -0
- package/src/libs/agent-runtime/qwen/index.ts +28 -0
- package/src/libs/agent-runtime/togetherai/index.test.ts +3 -2
- package/src/libs/agent-runtime/togetherai/index.ts +0 -5
- package/src/libs/agent-runtime/types/type.ts +1 -1
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.test.ts +123 -6
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +12 -6
- package/src/libs/agent-runtime/utils/streams/openai.ts +1 -1
- package/src/libs/agent-runtime/zeroone/index.test.ts +3 -2
- package/src/libs/agent-runtime/zeroone/index.ts +1 -5
- package/src/libs/agent-runtime/zhipu/index.test.ts +8 -5
- package/src/libs/agent-runtime/zhipu/index.ts +2 -2
- package/src/locales/default/error.ts +10 -51
- package/src/locales/default/modelProvider.ts +12 -169
- package/src/locales/default/setting.ts +5 -8
- package/src/server/globalConfig/index.ts +2 -0
- package/src/services/__tests__/chat.test.ts +16 -0
- package/src/services/chat.ts +3 -0
- package/src/services/message/client.test.ts +4 -1
- package/src/types/fetch.ts +3 -1
- package/src/types/llm.ts +22 -0
- package/src/types/user/settings/keyVaults.ts +1 -0
- package/src/app/(main)/settings/llm/Anthropic/index.tsx +0 -25
- package/src/app/(main)/settings/llm/Azure/index.tsx +0 -110
- package/src/app/(main)/settings/llm/Bedrock/index.tsx +0 -74
- package/src/app/(main)/settings/llm/DeepSeek/index.tsx +0 -21
- package/src/app/(main)/settings/llm/Google/index.tsx +0 -31
- package/src/app/(main)/settings/llm/Groq/index.tsx +0 -26
- package/src/app/(main)/settings/llm/Minimax/index.tsx +0 -20
- package/src/app/(main)/settings/llm/Mistral/index.tsx +0 -20
- package/src/app/(main)/settings/llm/Moonshot/index.tsx +0 -28
- package/src/app/(main)/settings/llm/Ollama/index.tsx +0 -37
- package/src/app/(main)/settings/llm/OpenAI/index.tsx +0 -28
- package/src/app/(main)/settings/llm/OpenRouter/index.tsx +0 -21
- package/src/app/(main)/settings/llm/Perplexity/index.tsx +0 -23
- package/src/app/(main)/settings/llm/TogetherAI/index.tsx +0 -19
- package/src/app/(main)/settings/llm/ZeroOne/index.tsx +0 -20
- package/src/app/(main)/settings/llm/Zhipu/index.tsx +0 -18
- /package/src/app/(main)/settings/llm/{Ollama → ProviderList/Ollama}/Checker.tsx +0 -0
package/locales/de-DE/error.json
CHANGED
|
@@ -54,39 +54,15 @@
|
|
|
54
54
|
"503": "Entschuldigung, der Server kann Ihre Anfrage derzeit nicht verarbeiten. Möglicherweise aufgrund von Überlastung oder Wartungsarbeiten. Bitte versuchen Sie es später erneut",
|
|
55
55
|
"504": "Entschuldigung, der Server hat keine Antwort vom Upstream-Server erhalten. Bitte versuchen Sie es später erneut",
|
|
56
56
|
"AgentRuntimeError": "Es ist ein Fehler bei der Ausführung des Lobe-Sprachmodells aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
57
|
-
"AnthropicBizError": "Fehler beim Anfordern des Anthropic AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
58
|
-
"AzureBizError": "Es ist ein Fehler bei der Anforderung des Azure AI-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
59
|
-
"BedrockBizError": "Es ist ein Fehler bei der Anforderung des Bedrock-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
60
|
-
"DeepSeekBizError": "Fehler bei der Anforderung des DeepSeek-Dienstes. Bitte überprüfen Sie die folgenden Informationen und versuchen Sie es erneut.",
|
|
61
|
-
"GoogleBizError": "Es ist ein Fehler bei der Anforderung des Google-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
62
|
-
"GroqBizError": "Die Anfrage an den Groq-Dienst ist fehlgeschlagen. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
63
57
|
"InvalidAccessCode": "Das Passwort ist ungültig oder leer. Bitte geben Sie das richtige Zugangspasswort ein oder fügen Sie einen benutzerdefinierten API-Schlüssel hinzu.",
|
|
64
|
-
"InvalidAnthropicAPIKey": "Ungültiger oder leerer Anthropic API-Schlüssel. Bitte überprüfen Sie den Anthropic API-Schlüssel und versuchen Sie es erneut.",
|
|
65
|
-
"InvalidAzureAPIKey": "Der Azure API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Azure API-Schlüssel und versuchen Sie es erneut.",
|
|
66
58
|
"InvalidBedrockCredentials": "Die Bedrock-Authentifizierung ist fehlgeschlagen. Bitte überprüfen Sie AccessKeyId/SecretAccessKey und versuchen Sie es erneut.",
|
|
67
59
|
"InvalidClerkUser": "Entschuldigung, du bist derzeit nicht angemeldet. Bitte melde dich an oder registriere ein Konto, um fortzufahren.",
|
|
68
|
-
"InvalidDeepSeekAPIKey": "DeepSeek-API-Schlüssel ungültig oder leer. Bitte überprüfen Sie den DeepSeek-API-Schlüssel und versuchen Sie es erneut.",
|
|
69
|
-
"InvalidGoogleAPIKey": "Der Google API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Google API-Schlüssel und versuchen Sie es erneut.",
|
|
70
|
-
"InvalidGroqAPIKey": "Der Groq API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Groq API-Schlüssel und versuchen Sie es erneut.",
|
|
71
|
-
"InvalidMinimaxAPIKey": "Ungültiger oder leerer Minimax-API-Schlüssel. Bitte überprüfen Sie den Minimax-API-Schlüssel und versuchen Sie es erneut.",
|
|
72
|
-
"InvalidMistralAPIKey": "Der Mistral AI-API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Mistral-API-Schlüssel und versuchen Sie es erneut.",
|
|
73
|
-
"InvalidMoonshotAPIKey": "Ungültiger oder leerer Moonshot AI API-Schlüssel. Bitte überprüfen Sie den Moonshot API-Schlüssel und versuchen Sie es erneut.",
|
|
74
60
|
"InvalidOllamaArgs": "Ollama-Konfiguration ist ungültig. Bitte überprüfen Sie die Ollama-Konfiguration und versuchen Sie es erneut.",
|
|
75
|
-
"
|
|
76
|
-
"InvalidPerplexityAPIKey": "Perplexity API Key ist ungültig oder leer. Bitte überprüfen Sie den Perplexity API Key und versuchen Sie es erneut.",
|
|
77
|
-
"InvalidTogetherAIAPIKey": "TogetherAI API-Schlüssel ungültig oder leer. Bitte überprüfen Sie den TogetherAI API-Schlüssel und versuchen Sie es erneut.",
|
|
78
|
-
"InvalidZeroOneAPIKey": "Ungültiger oder leerer ZeroOne-API-Schlüssel. Bitte überprüfen Sie den ZeroOne-API-Schlüssel und versuchen Sie es erneut.",
|
|
79
|
-
"InvalidZhipuAPIKey": "Der Zhipu API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Zhipu API-Schlüssel und versuchen Sie es erneut.",
|
|
61
|
+
"InvalidProviderAPIKey": "{{provider}} API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den {{provider}} API-Schlüssel und versuchen Sie es erneut.",
|
|
80
62
|
"LocationNotSupportError": "Entschuldigung, Ihr Standort unterstützt diesen Modellservice möglicherweise aufgrund von regionalen Einschränkungen oder nicht aktivierten Diensten nicht. Bitte überprüfen Sie, ob der aktuelle Standort die Verwendung dieses Dienstes unterstützt, oder versuchen Sie, andere Standortinformationen zu verwenden.",
|
|
81
|
-
"MinimaxBizError": "Fehler beim Abrufen des Minimax-Dienstes. Bitte überprüfen Sie die folgenden Informationen und versuchen Sie es erneut.",
|
|
82
|
-
"MistralBizError": "Beim Anfordern des Mistral AI-Dienstes ist ein Fehler aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
83
|
-
"MoonshotBizError": "Fehler beim Abrufen des Dark Side of the Moon-Services. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
84
63
|
"NoOpenAIAPIKey": "Der OpenAI-API-Schlüssel ist leer. Bitte fügen Sie einen benutzerdefinierten OpenAI-API-Schlüssel hinzu",
|
|
85
64
|
"OllamaBizError": "Fehler bei der Anforderung des Ollama-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
86
65
|
"OllamaServiceUnavailable": "Der Ollama-Dienst ist nicht verfügbar. Bitte überprüfen Sie, ob Ollama ordnungsgemäß ausgeführt wird und ob die CORS-Konfiguration von Ollama korrekt ist.",
|
|
87
|
-
"OpenAIBizError": "Fehler bei der OpenAI-Serviceanfrage. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut",
|
|
88
|
-
"OpenRouterBizError": "Fehler bei der Anforderung des OpenRouter AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
89
|
-
"PerplexityBizError": "Fehler bei der Anforderung des Perplexity AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
90
66
|
"PluginApiNotFound": "Entschuldigung, das API des Plugins im Plugin-Manifest existiert nicht. Bitte überprüfen Sie, ob Ihre Anfragemethode mit dem Plugin-Manifest-API übereinstimmt",
|
|
91
67
|
"PluginApiParamsError": "Entschuldigung, die Eingabeüberprüfung der Plugin-Anfrage ist fehlgeschlagen. Bitte überprüfen Sie, ob die Eingabe mit den API-Beschreibungsinformationen übereinstimmt",
|
|
92
68
|
"PluginGatewayError": "Entschuldigung, es ist ein Fehler im Plugin-Gateway aufgetreten. Bitte überprüfen Sie die Plugin-Gateway-Konfiguration auf Richtigkeit",
|
|
@@ -99,9 +75,7 @@
|
|
|
99
75
|
"PluginOpenApiInitError": "Entschuldigung, die Initialisierung des OpenAPI-Clients ist fehlgeschlagen. Bitte überprüfen Sie die Konfigurationsinformationen des OpenAPI auf Richtigkeit",
|
|
100
76
|
"PluginServerError": "Fehler bei der Serveranfrage des Plugins. Bitte überprüfen Sie die Fehlerinformationen unten in Ihrer Plugin-Beschreibungsdatei, Plugin-Konfiguration oder Serverimplementierung",
|
|
101
77
|
"PluginSettingsInvalid": "Das Plugin muss korrekt konfiguriert werden, um verwendet werden zu können. Bitte überprüfen Sie Ihre Konfiguration auf Richtigkeit",
|
|
102
|
-
"
|
|
103
|
-
"ZeroOneBizError": "Anfrage an ZeroOneBiz-Dienst fehlgeschlagen. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
104
|
-
"ZhipuBizError": "Es ist ein Fehler bei der Anforderung des Zhipu-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut."
|
|
78
|
+
"ProviderBizAPIKey": "Fehler bei der Anforderung des {{provider}}-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut."
|
|
105
79
|
},
|
|
106
80
|
"stt": {
|
|
107
81
|
"responseError": "Serviceanfrage fehlgeschlagen. Bitte überprüfen Sie die Konfiguration oder versuchen Sie es erneut"
|
|
@@ -111,6 +85,10 @@
|
|
|
111
85
|
},
|
|
112
86
|
"unlock": {
|
|
113
87
|
"addProxyUrl": "Fügen Sie die OpenAI-Proxy-URL hinzu (optional)",
|
|
88
|
+
"apiKey": {
|
|
89
|
+
"description": "Geben Sie Ihren {{name}} API-Schlüssel ein, um die Sitzung zu starten.",
|
|
90
|
+
"title": "Verwenden Sie Ihren benutzerdefinierten {{name}} API-Schlüssel"
|
|
91
|
+
},
|
|
114
92
|
"closeMessage": "Hinweis schließen",
|
|
115
93
|
"confirm": "Bestätigen und erneut versuchen",
|
|
116
94
|
"oauth": {
|
|
@@ -119,14 +97,6 @@
|
|
|
119
97
|
"title": "Anmelden",
|
|
120
98
|
"welcome": "Willkommen!"
|
|
121
99
|
},
|
|
122
|
-
"ollama": {
|
|
123
|
-
"cancel": "Abbrechen",
|
|
124
|
-
"confirm": "Herunterladen",
|
|
125
|
-
"description": "Geben Sie Ihre Ollama-Modellkennung ein, um fortzufahren",
|
|
126
|
-
"downloaded": "{{completed}} / {{total}}",
|
|
127
|
-
"starting": "Download startet...",
|
|
128
|
-
"title": "Bestimmtes Ollama-Modell herunterladen"
|
|
129
|
-
},
|
|
130
100
|
"password": {
|
|
131
101
|
"description": "Der Administrator hat die App-Verschlüsselung aktiviert. Gib das App-Passwort ein, um die App zu entsperren. Das Passwort muss nur einmal eingegeben werden.",
|
|
132
102
|
"placeholder": "Passwort eingeben",
|
|
@@ -1,16 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"anthropic": {
|
|
3
|
-
"title": "Anthropic",
|
|
4
|
-
"token": {
|
|
5
|
-
"desc": "Geben Sie Ihren API-Key von Anthropic ein",
|
|
6
|
-
"placeholder": "Anthropic API Key",
|
|
7
|
-
"title": "API Key"
|
|
8
|
-
},
|
|
9
|
-
"unlock": {
|
|
10
|
-
"description": "Geben Sie Ihren individuellen Anthropic-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
11
|
-
"title": "Verwenden Sie einen individuellen Anthropic-API-Schlüssel"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
2
|
"azure": {
|
|
15
3
|
"azureApiVersion": {
|
|
16
4
|
"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)",
|
|
@@ -29,10 +17,6 @@
|
|
|
29
17
|
"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",
|
|
30
18
|
"placeholder": "Azure API Key",
|
|
31
19
|
"title": "API Key"
|
|
32
|
-
},
|
|
33
|
-
"unlock": {
|
|
34
|
-
"description": "Geben Sie Ihren individuellen Azure OpenAI-API-Schlüssel ein, um das Gespräch zu beginnen",
|
|
35
|
-
"title": "Verwenden Sie einen individuellen Azure OpenAI-API-Schlüssel"
|
|
36
20
|
}
|
|
37
21
|
},
|
|
38
22
|
"bedrock": {
|
|
@@ -61,78 +45,6 @@
|
|
|
61
45
|
"title": "Verwenden Sie benutzerdefinierte Bedrock-Authentifizierungsinformationen"
|
|
62
46
|
}
|
|
63
47
|
},
|
|
64
|
-
"deepseek": {
|
|
65
|
-
"title": "DeepSeek",
|
|
66
|
-
"token": {
|
|
67
|
-
"desc": "Geben Sie Ihren API-Schlüssel von DeepSeek ein",
|
|
68
|
-
"placeholder": "DeepSeek API-Schlüssel",
|
|
69
|
-
"title": "API-Schlüssel"
|
|
70
|
-
},
|
|
71
|
-
"unlock": {
|
|
72
|
-
"description": "Geben Sie Ihren DeepSeek API-Schlüssel ein, um die Sitzung zu starten. Die App speichert Ihren API-Schlüssel nicht.",
|
|
73
|
-
"title": "Verwenden Sie einen benutzerdefinierten DeepSeek API-Schlüssel"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"google": {
|
|
77
|
-
"title": "Google",
|
|
78
|
-
"token": {
|
|
79
|
-
"desc": "Geben Sie Ihren API-Key von Google ein",
|
|
80
|
-
"placeholder": "Google API Key",
|
|
81
|
-
"title": "API Key"
|
|
82
|
-
},
|
|
83
|
-
"unlock": {
|
|
84
|
-
"description": "Geben Sie Ihren individuellen Google-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
85
|
-
"title": "Verwenden Sie einen individuellen Google-API-Schlüssel"
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"groq": {
|
|
89
|
-
"title": "Groq",
|
|
90
|
-
"token": {
|
|
91
|
-
"desc": "Geben Sie Ihren API-Key von Groq ein",
|
|
92
|
-
"placeholder": "Groq API Key",
|
|
93
|
-
"title": "API Key"
|
|
94
|
-
},
|
|
95
|
-
"unlock": {
|
|
96
|
-
"description": "Geben Sie Ihren individuellen Groq-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
97
|
-
"title": "Verwenden Sie einen individuellen Groq-API-Schlüssel"
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
"minimax": {
|
|
101
|
-
"title": "Minimax",
|
|
102
|
-
"token": {
|
|
103
|
-
"desc": "Geben Sie Ihren API-Schlüssel von Minimax ein",
|
|
104
|
-
"placeholder": "Minimax API-Schlüssel",
|
|
105
|
-
"title": "API-Schlüssel"
|
|
106
|
-
},
|
|
107
|
-
"unlock": {
|
|
108
|
-
"description": "Geben Sie Ihren Minimax API-Schlüssel ein, um die Sitzung zu starten. Die Anwendung speichert Ihren API-Schlüssel nicht.",
|
|
109
|
-
"title": "Verwenden Sie einen benutzerdefinierten Minimax API-Schlüssel"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"mistral": {
|
|
113
|
-
"title": "Mistral AI",
|
|
114
|
-
"token": {
|
|
115
|
-
"desc": "Geben Sie Ihren API-Key von Mistral AI ein",
|
|
116
|
-
"placeholder": "Mistral AI API Key",
|
|
117
|
-
"title": "API Key"
|
|
118
|
-
},
|
|
119
|
-
"unlock": {
|
|
120
|
-
"description": "Geben Sie Ihren individuellen Mistral AI-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
121
|
-
"title": "Verwenden Sie einen individuellen Mistral AI-API-Schlüssel"
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"moonshot": {
|
|
125
|
-
"title": "Moonshot AI",
|
|
126
|
-
"token": {
|
|
127
|
-
"desc": "Geben Sie Ihren API-Key von Moonshot AI ein",
|
|
128
|
-
"placeholder": "Moonshot AI API Key",
|
|
129
|
-
"title": "API Key"
|
|
130
|
-
},
|
|
131
|
-
"unlock": {
|
|
132
|
-
"description": "Geben Sie Ihren individuellen Moonshot AI-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
133
|
-
"title": "Verwenden Sie einen individuellen Moonshot AI-API-Schlüssel"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
48
|
"ollama": {
|
|
137
49
|
"checker": {
|
|
138
50
|
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde",
|
|
@@ -143,6 +55,12 @@
|
|
|
143
55
|
"placeholder": "vicuna,llava,codellama,llama2:13b-text",
|
|
144
56
|
"title": "Benutzerdefinierte Modellnamen"
|
|
145
57
|
},
|
|
58
|
+
"download": {
|
|
59
|
+
"desc": "Ollama is downloading the model. Please try not to close this page. The download will resume from where it left off if interrupted.",
|
|
60
|
+
"remainingTime": "Remaining Time",
|
|
61
|
+
"speed": "Download Speed",
|
|
62
|
+
"title": "Downloading model {{model}}"
|
|
63
|
+
},
|
|
146
64
|
"endpoint": {
|
|
147
65
|
"desc": "Geben Sie die Proxy-Adresse der Ollama-Schnittstelle ein, leer lassen, wenn lokal nicht spezifiziert",
|
|
148
66
|
"title": "Schnittstellen-Proxy-Adresse"
|
|
@@ -171,94 +89,20 @@
|
|
|
171
89
|
"windowsTab": "Windows (Vorschau)"
|
|
172
90
|
}
|
|
173
91
|
},
|
|
174
|
-
"title": "Ollama"
|
|
175
|
-
},
|
|
176
|
-
"openai": {
|
|
177
|
-
"title": "OpenAI",
|
|
178
|
-
"token": {
|
|
179
|
-
"desc": "Verwenden Sie Ihren eigenen OpenAI-Key",
|
|
180
|
-
"placeholder": "OpenAI API Key",
|
|
181
|
-
"title": "OpenAI API Key"
|
|
182
|
-
},
|
|
183
|
-
"unlock": {
|
|
184
|
-
"description": "Geben Sie Ihren individuellen OpenAI-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
185
|
-
"title": "Verwenden Sie einen individuellen OpenAI-API-Schlüssel"
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"openrouter": {
|
|
189
|
-
"checker": {
|
|
190
|
-
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
|
191
|
-
},
|
|
192
|
-
"customModelName": {
|
|
193
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
194
|
-
"placeholder": "mistralai/mistral-7b-instruct:free,openchat/openchat-7b:free",
|
|
195
|
-
"title": "Benutzerdefinierte Modellnamen"
|
|
196
|
-
},
|
|
197
|
-
"title": "OpenRouter",
|
|
198
|
-
"token": {
|
|
199
|
-
"desc": "Geben Sie Ihren API-Key von OpenRouter AI ein",
|
|
200
|
-
"placeholder": "OpenRouter AI API Key",
|
|
201
|
-
"title": "API Key"
|
|
202
|
-
},
|
|
92
|
+
"title": "Ollama",
|
|
203
93
|
"unlock": {
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
"token": {
|
|
211
|
-
"desc": "Geben Sie Ihren API-Key von Perplexity AI ein",
|
|
212
|
-
"placeholder": "Perplexity AI API Key",
|
|
213
|
-
"title": "API Key"
|
|
214
|
-
},
|
|
215
|
-
"unlock": {
|
|
216
|
-
"description": "Geben Sie Ihren individuellen Perplexity-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
217
|
-
"title": "Verwenden Sie einen individuellen Perplexity-API-Schlüssel"
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
"togetherai": {
|
|
221
|
-
"checker": {
|
|
222
|
-
"desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
|
|
223
|
-
},
|
|
224
|
-
"customModelName": {
|
|
225
|
-
"desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
|
|
226
|
-
"placeholder": "togethercomputer/Llama-2-7B-32K-Instruct,teknium/OpenHermes-2-Mistral-7B",
|
|
227
|
-
"title": "Benutzerdefinierte Modellnamen"
|
|
228
|
-
},
|
|
229
|
-
"title": "TogetherAI",
|
|
230
|
-
"token": {
|
|
231
|
-
"desc": "Geben Sie Ihren API-Key von TogetherAI AI ein",
|
|
232
|
-
"placeholder": "TogetherAI AI API Key",
|
|
233
|
-
"title": "API Key"
|
|
234
|
-
},
|
|
235
|
-
"unlock": {
|
|
236
|
-
"description": "Geben Sie Ihren individuellen TogetherAI-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
237
|
-
"title": "Verwenden Sie einen individuellen TogetherAI-API-Schlüssel"
|
|
94
|
+
"cancel": "Cancel Download",
|
|
95
|
+
"confirm": "Download",
|
|
96
|
+
"description": "Enter your Ollama model tag to continue the session",
|
|
97
|
+
"downloaded": "{{completed}} / {{total}}",
|
|
98
|
+
"starting": "Starting download...",
|
|
99
|
+
"title": "Download specified Ollama model"
|
|
238
100
|
}
|
|
239
101
|
},
|
|
240
102
|
"zeroone": {
|
|
241
|
-
"title": "01.AI Alles und Nichts"
|
|
242
|
-
"token": {
|
|
243
|
-
"desc": "Geben Sie Ihren API-Key von 01.AI Alles und Nichts ein",
|
|
244
|
-
"placeholder": "01.AI Alles und Nichts API Key",
|
|
245
|
-
"title": "API Key"
|
|
246
|
-
},
|
|
247
|
-
"unlock": {
|
|
248
|
-
"description": "Geben Sie Ihren individuellen ZeroOne-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
249
|
-
"title": "Verwenden Sie einen individuellen ZeroOne-API-Schlüssel"
|
|
250
|
-
}
|
|
103
|
+
"title": "01.AI Alles und Nichts"
|
|
251
104
|
},
|
|
252
105
|
"zhipu": {
|
|
253
|
-
"title": "Zhipu"
|
|
254
|
-
"token": {
|
|
255
|
-
"desc": "Geben Sie Ihren API-Key von Zhipu ein",
|
|
256
|
-
"placeholder": "Zhipu API Key",
|
|
257
|
-
"title": "API Key"
|
|
258
|
-
},
|
|
259
|
-
"unlock": {
|
|
260
|
-
"description": "Geben Sie Ihren individuellen Zhipu-API-Schlüssel ein, um das Gespräch zu beginnen. Die App speichert Ihren API-Schlüssel nicht.",
|
|
261
|
-
"title": "Verwenden Sie einen individuellen Zhipu-API-Schlüssel"
|
|
262
|
-
}
|
|
106
|
+
"title": "Zhipu"
|
|
263
107
|
}
|
|
264
108
|
}
|
|
@@ -43,6 +43,11 @@
|
|
|
43
43
|
"title": "Einstellungen"
|
|
44
44
|
},
|
|
45
45
|
"llm": {
|
|
46
|
+
"apiKey": {
|
|
47
|
+
"desc": "Bitte geben Sie Ihren {{name}} API-Schlüssel ein",
|
|
48
|
+
"placeholder": "{{name}} API-Schlüssel",
|
|
49
|
+
"title": "API-Schlüssel"
|
|
50
|
+
},
|
|
46
51
|
"checker": {
|
|
47
52
|
"button": "Überprüfen",
|
|
48
53
|
"desc": "Überprüfen Sie, ob der API-Schlüssel und die Proxy-Adresse korrekt eingegeben wurden",
|
|
@@ -109,14 +114,6 @@
|
|
|
109
114
|
},
|
|
110
115
|
"waitingForMore": "Weitere Modelle werden <1>geplant</1>, bitte freuen Sie sich auf weitere Updates ✨"
|
|
111
116
|
},
|
|
112
|
-
"ollama": {
|
|
113
|
-
"download": {
|
|
114
|
-
"desc": "Ollama lädt dieses Modell herunter. Bitte schließen Sie diese Seite nicht. Der Download wird an der abgebrochenen Stelle fortgesetzt, wenn Sie ihn erneut starten.",
|
|
115
|
-
"remainingTime": "Verbleibende Zeit",
|
|
116
|
-
"speed": "Download-Geschwindigkeit",
|
|
117
|
-
"title": "Modell {{model}} wird heruntergeladen"
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
117
|
"plugin": {
|
|
121
118
|
"addTooltip": "Benutzerdefiniertes Plugin",
|
|
122
119
|
"clearDeprecated": "Entfernen Sie ungültige Plugins",
|
package/locales/en-US/error.json
CHANGED
|
@@ -54,39 +54,15 @@
|
|
|
54
54
|
"503": "Sorry, the server is currently unable to process your request, possibly due to overload or maintenance. Please try again later.",
|
|
55
55
|
"504": "Sorry, the server did not receive a response from the upstream server. Please try again later.",
|
|
56
56
|
"AgentRuntimeError": "Lobe language model runtime execution error. Please troubleshoot or retry based on the following information.",
|
|
57
|
-
"AnthropicBizError": "Error requesting Anthropic service. Please troubleshoot or retry based on the following information.",
|
|
58
|
-
"AzureBizError": "Error requesting Azure AI service. Please troubleshoot or retry based on the following information.",
|
|
59
|
-
"BedrockBizError": "Error requesting Bedrock service. Please troubleshoot or retry based on the following information.",
|
|
60
|
-
"DeepSeekBizError": "Error requesting DeepSeek service, please troubleshoot or retry based on the following information",
|
|
61
|
-
"GoogleBizError": "Error requesting Google service. Please troubleshoot or retry based on the following information.",
|
|
62
|
-
"GroqBizError": "Error occurred while requesting Groq service. Please troubleshoot based on the following information or retry.",
|
|
63
57
|
"InvalidAccessCode": "Invalid access code or empty. Please enter the correct access code or add a custom API Key.",
|
|
64
|
-
"InvalidAnthropicAPIKey": "The Anthropic API Key is incorrect or empty. Please check the Anthropic API Key and retry.",
|
|
65
|
-
"InvalidAzureAPIKey": "Azure API Key is incorrect or empty. Please check the Azure API Key and retry.",
|
|
66
58
|
"InvalidBedrockCredentials": "Bedrock authentication failed. Please check the AccessKeyId/SecretAccessKey and retry.",
|
|
67
59
|
"InvalidClerkUser": "Sorry, you are not currently logged in. Please log in or register an account to continue.",
|
|
68
|
-
"InvalidDeepSeekAPIKey": "The DeepSeek API Key is incorrect or empty, please check the DeepSeek API Key and try again",
|
|
69
|
-
"InvalidGoogleAPIKey": "Google API Key is incorrect or empty. Please check the Google API Key and retry.",
|
|
70
|
-
"InvalidGroqAPIKey": "Groq API Key is incorrect or empty. Please check the Groq API Key and retry.",
|
|
71
|
-
"InvalidMinimaxAPIKey": "Incorrect or empty Minimax API Key, please check the Minimax API Key and try again",
|
|
72
|
-
"InvalidMistralAPIKey": "Incorrect or empty Mistral AI API Key. Please check your Mistral API Key and try again.",
|
|
73
|
-
"InvalidMoonshotAPIKey": "The Moonshot AI API Key is incorrect or empty, please check the Moonshot API Key and try again.",
|
|
74
60
|
"InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
|
|
75
|
-
"
|
|
76
|
-
"InvalidPerplexityAPIKey": "Perplexity API Key is incorrect or empty. Please check the Perplexity API Key and retry.",
|
|
77
|
-
"InvalidTogetherAIAPIKey": "Invalid or empty TogetherAI API Key. Please check your TogetherAI API Key and try again.",
|
|
78
|
-
"InvalidZeroOneAPIKey": "01-AI API Key is incorrect or empty. Please check the 01-AI API Key and retry.",
|
|
79
|
-
"InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
|
|
61
|
+
"InvalidProviderAPIKey": "{{provider}} API Key is incorrect or empty, please check your {{provider}} API Key and try again",
|
|
80
62
|
"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.",
|
|
81
|
-
"MinimaxBizError": "Error occurred while requesting Minimax service, please troubleshoot or retry based on the following information",
|
|
82
|
-
"MistralBizError": "Error occurred while requesting Mistral AI service. Please troubleshoot based on the following information or retry.",
|
|
83
|
-
"MoonshotBizError": "There was an error with the Moonshot service, please troubleshoot or retry based on the following information.",
|
|
84
63
|
"NoOpenAIAPIKey": "OpenAI API Key is empty, please add a custom OpenAI API Key",
|
|
85
64
|
"OllamaBizError": "Error requesting Ollama service, please troubleshoot or retry based on the following information",
|
|
86
65
|
"OllamaServiceUnavailable": "Ollama service is unavailable. Please check if Ollama is running properly or if the cross-origin configuration of Ollama is set correctly.",
|
|
87
|
-
"OpenAIBizError": "Error requesting OpenAI service. Please troubleshoot or retry based on the following information.",
|
|
88
|
-
"OpenRouterBizError": "Error requesting OpenRouter AI service. Please troubleshoot or retry based on the following information.",
|
|
89
|
-
"PerplexityBizError": "Error requesting Perplexity AI service. Please troubleshoot or retry based on the following information.",
|
|
90
66
|
"PluginApiNotFound": "Sorry, the API does not exist in the plugin's manifest. Please check if your request method matches the plugin manifest API",
|
|
91
67
|
"PluginApiParamsError": "Sorry, the input parameter validation for the plugin request failed. Please check if the input parameters match the API description",
|
|
92
68
|
"PluginGatewayError": "Sorry, there was an error with the plugin gateway. Please check if the plugin gateway configuration is correct.",
|
|
@@ -99,9 +75,7 @@
|
|
|
99
75
|
"PluginOpenApiInitError": "Sorry, the OpenAPI client failed to initialize. Please check if the OpenAPI configuration information is correct.",
|
|
100
76
|
"PluginServerError": "Plugin server request returned an error. Please check your plugin manifest file, plugin configuration, or server implementation based on the error information below",
|
|
101
77
|
"PluginSettingsInvalid": "This plugin needs to be correctly configured before it can be used. Please check if your configuration is correct",
|
|
102
|
-
"
|
|
103
|
-
"ZeroOneBizError": "Error requesting 01-AI service. Please troubleshoot or retry based on the following information.",
|
|
104
|
-
"ZhipuBizError": "Error requesting Zhipu service. Please troubleshoot or retry based on the following information."
|
|
78
|
+
"ProviderBizAPIKey": "Error requesting {{provider}} service, please troubleshoot or retry based on the following information"
|
|
105
79
|
},
|
|
106
80
|
"stt": {
|
|
107
81
|
"responseError": "Service request failed, please check the configuration or try again"
|
|
@@ -111,6 +85,10 @@
|
|
|
111
85
|
},
|
|
112
86
|
"unlock": {
|
|
113
87
|
"addProxyUrl": "Add OpenAI proxy URL (optional)",
|
|
88
|
+
"apiKey": {
|
|
89
|
+
"description": "Enter your {{name}} API Key to start the session",
|
|
90
|
+
"title": "Use custom {{name}} API Key"
|
|
91
|
+
},
|
|
114
92
|
"closeMessage": "Close message",
|
|
115
93
|
"confirm": "Confirm and Retry",
|
|
116
94
|
"oauth": {
|
|
@@ -119,14 +97,6 @@
|
|
|
119
97
|
"title": "Log in to your account",
|
|
120
98
|
"welcome": "Welcome!"
|
|
121
99
|
},
|
|
122
|
-
"ollama": {
|
|
123
|
-
"cancel": "Cancel Download",
|
|
124
|
-
"confirm": "Download",
|
|
125
|
-
"description": "Enter your Ollama model tag to proceed with the conversation",
|
|
126
|
-
"downloaded": "{{completed}} / {{total}}",
|
|
127
|
-
"starting": "Starting download...",
|
|
128
|
-
"title": "Download Specific Ollama Model"
|
|
129
|
-
},
|
|
130
100
|
"password": {
|
|
131
101
|
"description": "The application encryption has been enabled by the administrator. Enter the application password to unlock the application. The password only needs to be filled in once.",
|
|
132
102
|
"placeholder": "Please enter password",
|
|
@@ -1,16 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"anthropic": {
|
|
3
|
-
"title": "Anthropic",
|
|
4
|
-
"token": {
|
|
5
|
-
"desc": "Enter the API Key from Anthropic",
|
|
6
|
-
"placeholder": "Anthropic API Key",
|
|
7
|
-
"title": "API Key"
|
|
8
|
-
},
|
|
9
|
-
"unlock": {
|
|
10
|
-
"description": "Enter your Anthropic API Key to start the session. The app will not store your API Key",
|
|
11
|
-
"title": "Use Custom Anthropic API Key"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
2
|
"azure": {
|
|
15
3
|
"azureApiVersion": {
|
|
16
4
|
"desc": "Azure API version, follow the format YYYY-MM-DD, check the [latest version](https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#chat-completions)",
|
|
@@ -29,10 +17,6 @@
|
|
|
29
17
|
"desc": "When checking resources from the Azure portal, you can find this value in the 'Keys and Endpoints' section. You can use KEY1 or KEY2",
|
|
30
18
|
"placeholder": "Azure API Key",
|
|
31
19
|
"title": "API Key"
|
|
32
|
-
},
|
|
33
|
-
"unlock": {
|
|
34
|
-
"description": "Enter your Azure OpenAI API Key to start the session",
|
|
35
|
-
"title": "Use Custom Azure OpenAI API Key"
|
|
36
20
|
}
|
|
37
21
|
},
|
|
38
22
|
"bedrock": {
|
|
@@ -61,78 +45,6 @@
|
|
|
61
45
|
"title": "Use Custom Bedrock Authentication Information"
|
|
62
46
|
}
|
|
63
47
|
},
|
|
64
|
-
"deepseek": {
|
|
65
|
-
"title": "DeepSeek",
|
|
66
|
-
"token": {
|
|
67
|
-
"desc": "Enter your API Key from DeepSeek",
|
|
68
|
-
"placeholder": "DeepSeek API Key",
|
|
69
|
-
"title": "API Key"
|
|
70
|
-
},
|
|
71
|
-
"unlock": {
|
|
72
|
-
"description": "Enter your DeepSeek API Key to start the session. The app will not store your API Key.",
|
|
73
|
-
"title": "Use Custom DeepSeek API Key"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"google": {
|
|
77
|
-
"title": "Google",
|
|
78
|
-
"token": {
|
|
79
|
-
"desc": "Enter the API Key from Google",
|
|
80
|
-
"placeholder": "Google API Key",
|
|
81
|
-
"title": "API Key"
|
|
82
|
-
},
|
|
83
|
-
"unlock": {
|
|
84
|
-
"description": "Enter your Google API Key to start the session. The app will not store your API Key",
|
|
85
|
-
"title": "Use Custom Google API Key"
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"groq": {
|
|
89
|
-
"title": "Groq",
|
|
90
|
-
"token": {
|
|
91
|
-
"desc": "Enter the API Key from Groq",
|
|
92
|
-
"placeholder": "Groq API Key",
|
|
93
|
-
"title": "API Key"
|
|
94
|
-
},
|
|
95
|
-
"unlock": {
|
|
96
|
-
"description": "Enter your Groq API Key to start the session. The app will not store your API Key",
|
|
97
|
-
"title": "Use Custom Groq API Key"
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
"minimax": {
|
|
101
|
-
"title": "Minimax",
|
|
102
|
-
"token": {
|
|
103
|
-
"desc": "Enter your API Key from Minimax",
|
|
104
|
-
"placeholder": "Minimax API Key",
|
|
105
|
-
"title": "API Key"
|
|
106
|
-
},
|
|
107
|
-
"unlock": {
|
|
108
|
-
"description": "Enter your Minimax API Key to start the session. The app will not store your API Key.",
|
|
109
|
-
"title": "Use Custom Minimax API Key"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"mistral": {
|
|
113
|
-
"title": "Mistral AI",
|
|
114
|
-
"token": {
|
|
115
|
-
"desc": "Enter the API Key from Mistral AI",
|
|
116
|
-
"placeholder": "Mistral AI API Key",
|
|
117
|
-
"title": "API Key"
|
|
118
|
-
},
|
|
119
|
-
"unlock": {
|
|
120
|
-
"description": "Enter your Mistral AI API Key to start the session. The app will not store your API Key",
|
|
121
|
-
"title": "Use Custom Mistral AI API Key"
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"moonshot": {
|
|
125
|
-
"title": "Moonshot AI",
|
|
126
|
-
"token": {
|
|
127
|
-
"desc": "Enter your API Key from Moonshot AI",
|
|
128
|
-
"placeholder": "Moonshot AI API Key",
|
|
129
|
-
"title": "API Key"
|
|
130
|
-
},
|
|
131
|
-
"unlock": {
|
|
132
|
-
"description": "Enter your Moonshot AI API Key to start the session. The app will not store your API Key",
|
|
133
|
-
"title": "Use custom Moonshot AI API Key"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
48
|
"ollama": {
|
|
137
49
|
"checker": {
|
|
138
50
|
"desc": "Test if the proxy address is correctly filled in",
|
|
@@ -143,6 +55,12 @@
|
|
|
143
55
|
"placeholder": "vicuna, llava, codellama, llama2:13b-text",
|
|
144
56
|
"title": "Custom model name"
|
|
145
57
|
},
|
|
58
|
+
"download": {
|
|
59
|
+
"desc": "Ollama is downloading the model. Please try not to close this page. The download will resume from where it left off if interrupted.",
|
|
60
|
+
"remainingTime": "Remaining Time",
|
|
61
|
+
"speed": "Download Speed",
|
|
62
|
+
"title": "Downloading model {{model}}"
|
|
63
|
+
},
|
|
146
64
|
"endpoint": {
|
|
147
65
|
"desc": "Enter the Ollama interface proxy address, leave blank if not specified locally",
|
|
148
66
|
"title": "Interface proxy address"
|
|
@@ -171,94 +89,20 @@
|
|
|
171
89
|
"windowsTab": "Windows (Preview)"
|
|
172
90
|
}
|
|
173
91
|
},
|
|
174
|
-
"title": "Ollama"
|
|
175
|
-
},
|
|
176
|
-
"openai": {
|
|
177
|
-
"title": "OpenAI",
|
|
178
|
-
"token": {
|
|
179
|
-
"desc": "Use your own OpenAI Key",
|
|
180
|
-
"placeholder": "OpenAI API Key",
|
|
181
|
-
"title": "OpenAI API Key"
|
|
182
|
-
},
|
|
183
|
-
"unlock": {
|
|
184
|
-
"description": "Enter your OpenAI API Key to start the session. The app will not store your API Key",
|
|
185
|
-
"title": "Use custom OpenAI API Key"
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"openrouter": {
|
|
189
|
-
"checker": {
|
|
190
|
-
"desc": "Test if the proxy address is correctly filled in"
|
|
191
|
-
},
|
|
192
|
-
"customModelName": {
|
|
193
|
-
"desc": "Add custom models, separate multiple models with commas",
|
|
194
|
-
"placeholder": "mistralai/mistral-7b-instruct:free, openchat/openchat-7b:free",
|
|
195
|
-
"title": "Custom model name"
|
|
196
|
-
},
|
|
197
|
-
"title": "OpenRouter",
|
|
198
|
-
"token": {
|
|
199
|
-
"desc": "Enter your API Key from OpenRouter AI",
|
|
200
|
-
"placeholder": "OpenRouter AI API Key",
|
|
201
|
-
"title": "API Key"
|
|
202
|
-
},
|
|
203
|
-
"unlock": {
|
|
204
|
-
"description": "Enter your OpenRouter API Key to start the session. The app will not store your API Key",
|
|
205
|
-
"title": "Use custom OpenRouter API Key"
|
|
206
|
-
}
|
|
207
|
-
},
|
|
208
|
-
"perplexity": {
|
|
209
|
-
"title": "Perplexity",
|
|
210
|
-
"token": {
|
|
211
|
-
"desc": "Enter your API Key from Perplexity AI",
|
|
212
|
-
"placeholder": "Perplexity AI API Key",
|
|
213
|
-
"title": "API Key"
|
|
214
|
-
},
|
|
92
|
+
"title": "Ollama",
|
|
215
93
|
"unlock": {
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
"desc": "Test if the proxy address is correctly filled in"
|
|
223
|
-
},
|
|
224
|
-
"customModelName": {
|
|
225
|
-
"desc": "Add custom models, separate multiple models with commas",
|
|
226
|
-
"placeholder": "togethercomputer/Llama-2-7B-32K-Instruct, teknium/OpenHermes-2-Mistral-7B",
|
|
227
|
-
"title": "Custom model name"
|
|
228
|
-
},
|
|
229
|
-
"title": "TogetherAI",
|
|
230
|
-
"token": {
|
|
231
|
-
"desc": "Enter your API Key from TogetherAI AI",
|
|
232
|
-
"placeholder": "TogetherAI AI API Key",
|
|
233
|
-
"title": "API Key"
|
|
234
|
-
},
|
|
235
|
-
"unlock": {
|
|
236
|
-
"description": "Enter your TogetherAI API Key to start the session. The app will not store your API Key",
|
|
237
|
-
"title": "Use custom TogetherAI API Key"
|
|
94
|
+
"cancel": "Cancel Download",
|
|
95
|
+
"confirm": "Download",
|
|
96
|
+
"description": "Enter your Ollama model tag to continue the session",
|
|
97
|
+
"downloaded": "{{completed}} / {{total}}",
|
|
98
|
+
"starting": "Starting download...",
|
|
99
|
+
"title": "Download specified Ollama model"
|
|
238
100
|
}
|
|
239
101
|
},
|
|
240
102
|
"zeroone": {
|
|
241
|
-
"title": "01.AI Zero One Everything"
|
|
242
|
-
"token": {
|
|
243
|
-
"desc": "Enter the API Key from 01.AI Zero One Everything",
|
|
244
|
-
"placeholder": "01.AI Zero One Everything API Key",
|
|
245
|
-
"title": "API Key"
|
|
246
|
-
},
|
|
247
|
-
"unlock": {
|
|
248
|
-
"description": "Enter your 01.AI Zero One Everything API Key to start the session. The app will not store your API Key.",
|
|
249
|
-
"title": "Use Custom 01.AI Zero One Everything API Key"
|
|
250
|
-
}
|
|
103
|
+
"title": "01.AI Zero One Everything"
|
|
251
104
|
},
|
|
252
105
|
"zhipu": {
|
|
253
|
-
"title": "Zhipu"
|
|
254
|
-
"token": {
|
|
255
|
-
"desc": "Enter the API Key from Zhipu",
|
|
256
|
-
"placeholder": "Zhipu API Key",
|
|
257
|
-
"title": "API Key"
|
|
258
|
-
},
|
|
259
|
-
"unlock": {
|
|
260
|
-
"description": "Enter your Zhipu API Key to start the session. The app will not store your API Key.",
|
|
261
|
-
"title": "Use Custom Zhipu API Key"
|
|
262
|
-
}
|
|
106
|
+
"title": "Zhipu"
|
|
263
107
|
}
|
|
264
108
|
}
|