@lobehub/chat 0.128.9 → 0.129.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.
- package/CHANGELOG.md +50 -0
- package/locales/ar/common.json +2 -1
- package/locales/ar/error.json +6 -0
- package/locales/ar/setting.json +9 -1
- package/locales/de-DE/common.json +1 -0
- package/locales/de-DE/error.json +6 -0
- package/locales/de-DE/setting.json +9 -1
- package/locales/en-US/common.json +1 -0
- package/locales/en-US/error.json +6 -0
- package/locales/en-US/setting.json +8 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/es-ES/error.json +6 -0
- package/locales/es-ES/setting.json +9 -1
- package/locales/fr-FR/common.json +1 -0
- package/locales/fr-FR/error.json +6 -0
- package/locales/fr-FR/setting.json +8 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/it-IT/error.json +6 -0
- package/locales/it-IT/setting.json +8 -0
- package/locales/ja-JP/common.json +1 -0
- package/locales/ja-JP/error.json +6 -0
- package/locales/ja-JP/setting.json +8 -0
- package/locales/ko-KR/common.json +1 -0
- package/locales/ko-KR/error.json +6 -0
- package/locales/ko-KR/setting.json +8 -0
- package/locales/nl-NL/common.json +2 -1
- package/locales/nl-NL/error.json +6 -0
- package/locales/nl-NL/setting.json +8 -0
- package/locales/pl-PL/common.json +2 -1
- package/locales/pl-PL/error.json +6 -0
- package/locales/pl-PL/setting.json +8 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/pt-BR/error.json +6 -0
- package/locales/pt-BR/setting.json +9 -1
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/error.json +6 -0
- package/locales/ru-RU/setting.json +9 -1
- package/locales/tr-TR/common.json +1 -0
- package/locales/tr-TR/error.json +6 -0
- package/locales/tr-TR/setting.json +9 -1
- package/locales/vi-VN/common.json +1 -0
- package/locales/vi-VN/error.json +6 -0
- package/locales/vi-VN/setting.json +9 -1
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-CN/error.json +6 -0
- package/locales/zh-CN/setting.json +8 -0
- package/locales/zh-TW/common.json +1 -0
- package/locales/zh-TW/error.json +6 -0
- package/locales/zh-TW/setting.json +8 -0
- package/package.json +1 -1
- package/public/robots.txt +0 -2
- package/src/app/api/chat/[provider]/agentRuntime.ts +13 -0
- package/src/app/api/config/route.ts +2 -0
- package/src/app/api/errorResponse.ts +3 -0
- package/src/app/settings/llm/Perplexity/index.tsx +52 -0
- package/src/app/settings/llm/index.tsx +2 -0
- package/src/components/ModelIcon/index.tsx +3 -1
- package/src/components/ModelProviderIcon/index.tsx +19 -1
- package/src/components/ModelTag/ModelIcon.tsx +3 -1
- package/src/config/modelProviders/index.ts +3 -0
- package/src/config/modelProviders/perplexity.ts +44 -0
- package/src/config/server/provider.ts +8 -0
- package/src/const/settings.ts +4 -0
- package/src/features/Conversation/Error/APIKeyForm/Perplexity.tsx +60 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +5 -0
- package/src/features/Conversation/Error/index.tsx +1 -0
- package/src/libs/agent-runtime/error.ts +3 -0
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/perplexity/index.ts +86 -0
- package/src/libs/agent-runtime/types/type.ts +1 -0
- package/src/locales/default/common.ts +1 -0
- package/src/locales/default/error.ts +7 -0
- package/src/locales/default/setting.ts +8 -0
- package/src/services/_auth.ts +4 -0
- package/src/store/global/slices/settings/selectors/modelProvider.ts +9 -0
- package/src/types/settings/modelProvider.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 0.129.0](https://github.com/lobehub/lobe-chat/compare/v0.128.10...v0.129.0)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-02-22**</sup>
|
|
8
|
+
|
|
9
|
+
#### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **misc**: Support perplexity AI provider.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's improved
|
|
19
|
+
|
|
20
|
+
- **misc**: Support perplexity AI provider, closes [#1339](https://github.com/lobehub/lobe-chat/issues/1339) ([61c88fb](https://github.com/lobehub/lobe-chat/commit/61c88fb))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
### [Version 0.128.10](https://github.com/lobehub/lobe-chat/compare/v0.128.9...v0.128.10)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2024-02-21**</sup>
|
|
33
|
+
|
|
34
|
+
#### 🐛 Bug Fixes
|
|
35
|
+
|
|
36
|
+
- **misc**: Fix the robots.txt config.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### What's fixed
|
|
44
|
+
|
|
45
|
+
- **misc**: Fix the robots.txt config ([c4adfe4](https://github.com/lobehub/lobe-chat/commit/c4adfe4))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
### [Version 0.128.9](https://github.com/lobehub/lobe-chat/compare/v0.128.8...v0.128.9)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2024-02-20**</sup>
|
package/locales/ar/common.json
CHANGED
package/locales/ar/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "مفتاح Google API غير صحيح أو فارغ، يرجى التحقق من مفتاح Google API وإعادة المحاولة",
|
|
44
44
|
"InvalidMoonshotAPIKey": "مفتاح API لـ Moonshot AI غير صحيح أو فارغ، يرجى التحقق من مفتاح API لـ Moonshot وإعادة المحاولة",
|
|
45
45
|
"InvalidOllamaArgs": "تكوين Ollama غير صحيح، يرجى التحقق من تكوين Ollama وإعادة المحاولة",
|
|
46
|
+
"InvalidPerplexityAPIKey": "مفتاح Perplexity API غير صحيح أو فارغ، يرجى التحقق من مفتاح Perplexity API وإعادة المحاولة",
|
|
46
47
|
"InvalidZhipuAPIKey": "مفتاح Zhipu API غير صحيح أو فارغ، يرجى التحقق من مفتاح Zhipu API وإعادة المحاولة",
|
|
47
48
|
"LocationNotSupportError": "عذرًا، لا يدعم موقعك الحالي خدمة هذا النموذج، قد يكون ذلك بسبب قيود المنطقة أو عدم توفر الخدمة. يرجى التحقق مما إذا كان الموقع الحالي يدعم استخدام هذه الخدمة، أو محاولة استخدام معلومات الموقع الأخرى.",
|
|
48
49
|
"MoonshotBizError": "حدث خطأ في خدمة جانب القمر، يرجى التحقق من المعلومات أدناه أو إعادة المحاولة",
|
|
49
50
|
"NoOpenAIAPIKey": "مفتاح API الخاص بـ OpenAI فارغ، يرجى إضافة مفتاح API الخاص بـ OpenAI",
|
|
50
51
|
"OllamaBizError": "خطأ في طلب خدمة Ollama، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
51
52
|
"OpenAIBizError": "حدث خطأ في طلب خدمة OpenAI، يرجى التحقق من المعلومات أدناه وإعادة المحاولة",
|
|
53
|
+
"PerplexityBizError": "خطأ في طلب خدمة Perplexity AI، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
|
|
52
54
|
"PluginApiNotFound": "عذرًا، لا يوجد API للإضافة في وصف الإضافة، يرجى التحقق من تطابق طريقة الطلب الخاصة بك مع API الوصف",
|
|
53
55
|
"PluginApiParamsError": "عذرًا، فشلت التحقق من صحة معلمات الطلب للإضافة، يرجى التحقق من تطابق المعلمات مع معلومات الوصف",
|
|
54
56
|
"PluginGatewayError": "عذرًا، حدث خطأ في بوابة الإضافة، يرجى التحقق من تكوين بوابة الإضافة",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "أدخل مفتاح OpenAI API الخاص بك لبدء الجلسة. لن يقوم التطبيق بتسجيل مفتاح الواجهة البرمجية الخاص بك",
|
|
90
92
|
"title": "استخدام مفتاح OpenAI API المخصص"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "أدخل مفتاح Perplexity API الخاص بك للبدء في الجلسة. لن يتم تسجيل مفتاح الواجهة البرمجية لتطبيقات الجلسة",
|
|
96
|
+
"title": "استخدام مفتاح Perplexity API المخصص"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "أدخل مفتاح Zhipu API الخاص بك لبدء الجلسة. لن يقوم التطبيق بتسجيل مفتاح الواجهة البرمجية الخاص بك",
|
|
94
100
|
"title": "استخدام مفتاح Zhipu API المخصص"
|
package/locales/ar/setting.json
CHANGED
|
@@ -138,8 +138,16 @@
|
|
|
138
138
|
"title": "استخدام Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity AI",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "أدخل مفتاح API من Perplexity AI",
|
|
145
|
+
"placeholder": "مفتاح API Perplexity AI",
|
|
146
|
+
"title": "مفتاح الواجهة البرمجية للتطبيق"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
|
-
"title": "
|
|
150
|
+
"title": "Zhipu AI",
|
|
143
151
|
"token": {
|
|
144
152
|
"desc": "املأ مفتاح واجهة برمجة التطبيقات الخاص بـ Zhipu",
|
|
145
153
|
"placeholder": "مفتاح واجهة برمجة التطبيقات الخاص بـ Zhipu",
|
package/locales/de-DE/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"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.",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Ungültiger oder leerer Moonshot AI API-Schlüssel. Bitte überprüfen Sie den Moonshot API-Schlüssel und versuchen Sie es erneut.",
|
|
45
45
|
"InvalidOllamaArgs": "Ollama-Konfiguration ist ungültig. Bitte überprüfen Sie die Ollama-Konfiguration und versuchen Sie es erneut.",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Perplexity API Key ist ungültig oder leer. Bitte überprüfen Sie den Perplexity API Key und versuchen Sie es erneut.",
|
|
46
47
|
"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.",
|
|
47
48
|
"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.",
|
|
48
49
|
"MoonshotBizError": "Fehler beim Abrufen des Dark Side of the Moon-Services. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
49
50
|
"NoOpenAIAPIKey": "Der OpenAI-API-Schlüssel ist leer. Bitte fügen Sie einen benutzerdefinierten OpenAI-API-Schlüssel hinzu",
|
|
50
51
|
"OllamaBizError": "Fehler bei der Anforderung des Ollama-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
51
52
|
"OpenAIBizError": "Fehler bei der OpenAI-Serviceanfrage. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut",
|
|
53
|
+
"PerplexityBizError": "Fehler bei der Anforderung des Perplexity AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
|
|
52
54
|
"PluginApiNotFound": "Entschuldigung, das API des Plugins im Plugin-Manifest existiert nicht. Bitte überprüfen Sie, ob Ihre Anfragemethode mit dem Plugin-Manifest-API übereinstimmt",
|
|
53
55
|
"PluginApiParamsError": "Entschuldigung, die Eingabeüberprüfung der Plugin-Anfrage ist fehlgeschlagen. Bitte überprüfen Sie, ob die Eingabe mit den API-Beschreibungsinformationen übereinstimmt",
|
|
54
56
|
"PluginGatewayError": "Entschuldigung, es ist ein Fehler im Plugin-Gateway aufgetreten. Bitte überprüfen Sie die Plugin-Gateway-Konfiguration auf Richtigkeit",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Geben Sie Ihren OpenAI API-Schlüssel ein, um die Sitzung zu starten. Die Anwendung speichert Ihren API-Schlüssel nicht.",
|
|
90
92
|
"title": "Verwenden von benutzerdefinierten OpenAI API-Schlüssel"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Geben Sie Ihren eigenen Perplexity API Key ein, um das Gespräch zu beginnen. Die App speichert Ihren API Key nicht.",
|
|
96
|
+
"title": "Verwenden Sie einen benutzerdefinierten Perplexity API Key"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Geben Sie Ihren Zhipu API-Schlüssel ein, um die Sitzung zu starten. Die Anwendung speichert Ihren API-Schlüssel nicht.",
|
|
94
100
|
"title": "Verwenden von benutzerdefinierten Zhipu API-Schlüssel"
|
|
@@ -138,8 +138,16 @@
|
|
|
138
138
|
"title": "Azure OpenAI verwenden"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Geben Sie den API-Schlüssel von Perplexity AI ein",
|
|
145
|
+
"placeholder": "Perplexity AI API-Schlüssel",
|
|
146
|
+
"title": "API-Schlüssel"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
|
-
"title": "
|
|
150
|
+
"title": "Zhipu AI",
|
|
143
151
|
"token": {
|
|
144
152
|
"desc": "Geben Sie den API-Schlüssel von Zhipu ein",
|
|
145
153
|
"placeholder": "Zhipu API Key",
|
package/locales/en-US/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Google API Key is incorrect or empty. Please check the Google API Key and retry.",
|
|
44
44
|
"InvalidMoonshotAPIKey": "The Moonshot AI API Key is incorrect or empty, please check the Moonshot API Key and try again.",
|
|
45
45
|
"InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Perplexity API Key is incorrect or empty. Please check the Perplexity API Key and retry.",
|
|
46
47
|
"InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
|
|
47
48
|
"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.",
|
|
48
49
|
"MoonshotBizError": "There was an error with the Moonshot service, please troubleshoot or retry based on the following information.",
|
|
49
50
|
"NoOpenAIAPIKey": "OpenAI API Key is empty, please add a custom OpenAI API Key",
|
|
50
51
|
"OllamaBizError": "Error requesting Ollama service, please troubleshoot or retry based on the following information",
|
|
51
52
|
"OpenAIBizError": "Error requesting OpenAI service. Please troubleshoot or retry based on the following information.",
|
|
53
|
+
"PerplexityBizError": "Error requesting Perplexity AI service. Please troubleshoot or retry based on the following information.",
|
|
52
54
|
"PluginApiNotFound": "Sorry, the API does not exist in the plugin's manifest. Please check if your request method matches the plugin manifest API",
|
|
53
55
|
"PluginApiParamsError": "Sorry, the input parameter validation for the plugin request failed. Please check if the input parameters match the API description",
|
|
54
56
|
"PluginGatewayError": "Sorry, there was an error with the plugin gateway. Please check if the plugin gateway configuration is correct.",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Enter your OpenAI API Key to start the session. The app will not store your API Key.",
|
|
90
92
|
"title": "Use custom OpenAI API Key"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Enter your Perplexity API Key to start the session. The app will not store your API Key.",
|
|
96
|
+
"title": "Use custom Perplexity API Key"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Enter your Zhipu API Key to start the session. The app will not store your API Key.",
|
|
94
100
|
"title": "Use custom Zhipu API Key"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity AI",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Enter the API Key from Perplexity",
|
|
145
|
+
"placeholder": "Perplexity API Key",
|
|
146
|
+
"title": "API Key"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "Zhipu",
|
|
143
151
|
"token": {
|
package/locales/es-ES/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "La clave de API de Google es incorrecta o está vacía, por favor, verifica la clave de API de Google e inténtalo de nuevo",
|
|
44
44
|
"InvalidMoonshotAPIKey": "La clave de API de Moonshot AI no es válida o está vacía. Por favor, revise la clave de API de Moonshot e inténtelo de nuevo.",
|
|
45
45
|
"InvalidOllamaArgs": "La configuración de Ollama no es válida, por favor revisa la configuración de Ollama e inténtalo de nuevo",
|
|
46
|
+
"InvalidPerplexityAPIKey": "La clave de API de Perplexity es inválida o está vacía. Por favor, verifica la clave de API de Perplexity e inténtalo de nuevo",
|
|
46
47
|
"InvalidZhipuAPIKey": "La clave de API de Zhipu es incorrecta o está vacía, por favor, verifica la clave de API de Zhipu e inténtalo de nuevo",
|
|
47
48
|
"LocationNotSupportError": "Lo sentimos, tu ubicación actual no es compatible con este servicio de modelo, puede ser debido a restricciones geográficas o a que el servicio no está disponible. Por favor, verifica si tu ubicación actual es compatible con este servicio o intenta usar otra información de ubicación.",
|
|
48
49
|
"MoonshotBizError": "Se produjo un error al solicitar el servicio de Moonshot en el lado oscuro de la luna. Por favor, revise la siguiente información o inténtelo de nuevo.",
|
|
49
50
|
"NoOpenAIAPIKey": "La clave de API de OpenAI está vacía. Agregue una clave de API de OpenAI personalizada",
|
|
50
51
|
"OllamaBizError": "Error al solicitar el servicio de Ollama, por favor verifica la siguiente información o inténtalo de nuevo",
|
|
51
52
|
"OpenAIBizError": "Error al solicitar el servicio OpenAI. Depure o reintente según la siguiente información",
|
|
53
|
+
"PerplexityBizError": "Error comercial al solicitar el servicio de IA de Perplexity. Por favor, revisa la siguiente información o inténtalo de nuevo",
|
|
52
54
|
"PluginApiNotFound": "Lo sentimos, el API especificado no existe en el manifiesto del complemento. Verifique si su método de solicitud coincide con el API del manifiesto del complemento",
|
|
53
55
|
"PluginApiParamsError": "Lo sentimos, la validación de los parámetros de entrada de la solicitud del complemento no ha pasado. Verifique si los parámetros de entrada coinciden con la información de descripción del API",
|
|
54
56
|
"PluginGatewayError": "Lo sentimos, se ha producido un error en la puerta de enlace del complemento. Verifique si la configuración de la puerta de enlace del complemento es correcta",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Ingresa tu clave de API de OpenAI para comenzar la sesión. La aplicación no guardará tu clave de API",
|
|
90
92
|
"title": "Usar clave de API personalizada de OpenAI"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Ingresa tu clave de API de Perplexity para comenzar la sesión. La aplicación no guardará tu clave de API",
|
|
96
|
+
"title": "Usar tu propia clave de API de Perplexity"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Ingresa tu clave de API de Zhipu para comenzar la sesión. La aplicación no guardará tu clave de API",
|
|
94
100
|
"title": "Usar clave de API personalizada de Zhipu"
|
|
@@ -138,8 +138,16 @@
|
|
|
138
138
|
"title": "Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity AI",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Introduce la clave API de Perplexity AI",
|
|
145
|
+
"placeholder": "Clave API de Perplexity AI",
|
|
146
|
+
"title": "Clave API"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
|
-
"title": "
|
|
150
|
+
"title": "Zhipu AI",
|
|
143
151
|
"token": {
|
|
144
152
|
"desc": "Ingresa la clave API de Zhipu",
|
|
145
153
|
"placeholder": "Clave API de Zhipu",
|
package/locales/fr-FR/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Clé API Google incorrecte ou vide, veuillez vérifier la clé API Google et réessayer",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Clé API Moonshot AI incorrecte ou manquante. Veuillez vérifier la clé API Moonshot et réessayer.",
|
|
45
45
|
"InvalidOllamaArgs": "La configuration d'Ollama n'est pas valide, veuillez vérifier la configuration d'Ollama et réessayer",
|
|
46
|
+
"InvalidPerplexityAPIKey": "La clé API Perplexity est incorrecte ou vide. Veuillez vérifier la clé API Perplexity et réessayer.",
|
|
46
47
|
"InvalidZhipuAPIKey": "Clé API Zhipu incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
|
|
47
48
|
"LocationNotSupportError": "Désolé, votre emplacement actuel ne prend pas en charge ce service de modèle, peut-être en raison de restrictions géographiques ou de services non disponibles. Veuillez vérifier si votre emplacement actuel prend en charge ce service ou essayer avec une autre localisation.",
|
|
48
49
|
"MoonshotBizError": "Erreur de service Moonshot : une erreur s'est produite lors de la demande du service Côté Obscur de la Lune. Veuillez vérifier les informations suivantes ou réessayer.",
|
|
49
50
|
"NoOpenAIAPIKey": "La clé API OpenAI est vide. Veuillez ajouter une clé API OpenAI personnalisée",
|
|
50
51
|
"OllamaBizError": "Erreur commerciale lors de la demande de service Ollama, veuillez vérifier les informations ci-dessous ou réessayer",
|
|
51
52
|
"OpenAIBizError": "Erreur de service OpenAI. Veuillez diagnostiquer ou réessayer en fonction des informations ci-dessous",
|
|
53
|
+
"PerplexityBizError": "Erreur commerciale lors de la demande de service Perplexity AI. Veuillez vérifier les informations suivantes ou réessayer.",
|
|
52
54
|
"PluginApiNotFound": "Désolé, l'API spécifiée n'existe pas dans le manifeste du plugin. Veuillez vérifier que votre méthode de requête correspond à l'API du manifeste du plugin",
|
|
53
55
|
"PluginApiParamsError": "Désolé, la validation des paramètres d'entrée de la requête de ce plugin a échoué. Veuillez vérifier que les paramètres d'entrée correspondent aux informations de l'API",
|
|
54
56
|
"PluginGatewayError": "Désolé, une erreur est survenue avec la passerelle du plugin. Veuillez vérifier la configuration de la passerelle du plugin.",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Entrez votre clé API OpenAI pour commencer la session. L'application ne conservera pas votre clé API",
|
|
90
92
|
"title": "Utiliser une clé API OpenAI personnalisée"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Entrez votre clé API Perplexity pour commencer la session. L'application ne conservera pas votre clé API.",
|
|
96
|
+
"title": "Utiliser une clé API Perplexity personnalisée"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Entrez votre clé API Zhipu pour commencer la session. L'application ne conservera pas votre clé API",
|
|
94
100
|
"title": "Utiliser une clé API Zhipu personnalisée"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Entrez la clé API de Perplexity AI",
|
|
145
|
+
"placeholder": "Clé API Perplexity AI",
|
|
146
|
+
"title": "Clé API"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|
package/locales/it-IT/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Chiave API Google non corretta o vuota, controlla la chiave API Google e riprova",
|
|
44
44
|
"InvalidMoonshotAPIKey": "La chiave API di Moonshot AI non è corretta o è vuota, si prega di controllare la chiave API di Moonshot e riprovare",
|
|
45
45
|
"InvalidOllamaArgs": "Configurazione Ollama non valida, controllare la configurazione di Ollama e riprovare",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Chiave API Perplexity non valida o vuota, controlla la chiave API Perplexity e riprova",
|
|
46
47
|
"InvalidZhipuAPIKey": "Chiave API Zhipu non corretta o vuota, controlla la chiave API Zhipu e riprova",
|
|
47
48
|
"LocationNotSupportError": "Spiacenti, la tua posizione attuale non supporta questo servizio modello, potrebbe essere a causa di restrizioni geografiche o servizi non attivati. Verifica se la posizione attuale supporta l'uso di questo servizio o prova a utilizzare un'altra posizione.",
|
|
48
49
|
"MoonshotBizError": "Si è verificato un errore nel servizio Moonshot, si prega di controllare le informazioni seguenti o riprovare",
|
|
49
50
|
"NoOpenAIAPIKey": "La chiave API OpenAI è vuota. Aggiungi una chiave API personalizzata OpenAI",
|
|
50
51
|
"OllamaBizError": "Errore di servizio Ollama, controllare le informazioni seguenti o riprovare",
|
|
51
52
|
"OpenAIBizError": "Errore nella richiesta del servizio OpenAI. Segui le informazioni seguenti per individuare e riprovare",
|
|
53
|
+
"PerplexityBizError": "Errore di business nella richiesta del servizio Perplexity AI, controlla le informazioni seguenti o riprova",
|
|
52
54
|
"PluginApiNotFound": "Spiacenti, l'API specificata non esiste nel manifesto del plugin. Verifica che il metodo di richiesta corrisponda all'API del manifesto del plugin",
|
|
53
55
|
"PluginApiParamsError": "Spiacenti, la convalida dei parametri di input della richiesta del plugin non è riuscita. Verifica che i parametri di input corrispondano alle informazioni dell'API",
|
|
54
56
|
"PluginGatewayError": "Spiacenti, si è verificato un errore nel gateway del plugin. Verifica che la configurazione del gateway del plugin sia corretta",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Inserisci la tua chiave API OpenAI per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
|
|
90
92
|
"title": "Utilizza la chiave API OpenAI personalizzata"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Inserisci la tua chiave API Perplexity per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
|
|
96
|
+
"title": "Utilizza la tua chiave API Perplexity personalizzata"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Inserisci la tua chiave API Zhipu per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
|
|
94
100
|
"title": "Utilizza la chiave API Zhipu personalizzata"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Usa Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Inserisci la chiave API di Perplexity AI",
|
|
145
|
+
"placeholder": "Chiave API di Perplexity AI",
|
|
146
|
+
"title": "Chiave API"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|
package/locales/ja-JP/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Google APIキーが正しくないか空です。Google APIキーを確認してから再試行してください。",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Moonshot AI APIキーが正しくないか空です。Moonshot APIキーを確認して再試行してください。",
|
|
45
45
|
"InvalidOllamaArgs": "Ollamaの設定が正しくありません。Ollamaの設定を確認してからもう一度お試しください",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Perplexity APIキーが正しくないか空です。Perplexity APIキーを確認してもう一度お試しください",
|
|
46
47
|
"InvalidZhipuAPIKey": "Zhipu APIキーが正しくないか空です。Zhipu APIキーを確認してから再試行してください。",
|
|
47
48
|
"LocationNotSupportError": "申し訳ありませんが、お住まいの地域ではこのモデルサービスをサポートしていません。地域制限またはサービスが利用できない可能性があります。現在の位置がこのサービスをサポートしているかどうかを確認するか、他の位置情報を使用してみてください。",
|
|
48
49
|
"MoonshotBizError": "月の裏側サービスのリクエストでエラーが発生しました。以下の情報を確認して再試行してください。",
|
|
49
50
|
"NoOpenAIAPIKey": "OpenAI APIキーが空です。カスタムOpenAI APIキーを追加してください。",
|
|
50
51
|
"OllamaBizError": "Ollamaサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再度お試しください",
|
|
51
52
|
"OpenAIBizError": "OpenAIサービスのリクエストエラーが発生しました。以下の情報に基づいて問題を解決したり、再試行したりしてください",
|
|
53
|
+
"PerplexityBizError": "Perplexity AIサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングするか、再度お試しください",
|
|
52
54
|
"PluginApiNotFound": "申し訳ありませんが、プラグインのマニフェストに指定されたAPIが見つかりませんでした。リクエストメソッドとプラグインのマニフェストのAPIが一致しているかどうかを確認してください",
|
|
53
55
|
"PluginApiParamsError": "申し訳ありませんが、プラグインのリクエストパラメータの検証に失敗しました。パラメータとAPIの説明が一致しているかどうか確認してください",
|
|
54
56
|
"PluginGatewayError": "申し訳ありませんが、プラグインゲートウェイでエラーが発生しました。プラグインゲートウェイの設定を確認してください。",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "OpenAI APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
|
|
90
92
|
"title": "カスタムOpenAI APIキーを使用"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Perplexity APIキーを入力して会話を開始します。アプリはAPIキーを記録しません",
|
|
96
|
+
"title": "カスタムPerplexity APIキーを使用"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Zhipu APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
|
|
94
100
|
"title": "カスタムZhipu APIキーを使用"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Azure OpenAI を使用"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Perplexity AI の API キーを入力してください",
|
|
145
|
+
"placeholder": "Perplexity AI API キー",
|
|
146
|
+
"title": "API キー"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|
package/locales/ko-KR/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "잘못된 또는 비어 있는 Google API Key입니다. Google API Key를 확인한 후 다시 시도하십시오.",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Moonshot AI API 키가 잘못되었거나 비어 있습니다. Moonshot API 키를 확인한 후 다시 시도해주세요.",
|
|
45
45
|
"InvalidOllamaArgs": "Ollama 구성이 잘못되었습니다. Ollama 구성을 확인한 후 다시 시도하십시오.",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Perplexity API 키가 잘못되었거나 비어 있습니다. Perplexity API 키를 확인한 후 다시 시도하십시오.",
|
|
46
47
|
"InvalidZhipuAPIKey": "잘못된 또는 비어 있는 Zhipu API Key입니다. Zhipu API Key를 확인한 후 다시 시도하십시오.",
|
|
47
48
|
"LocationNotSupportError": "죄송합니다. 귀하의 현재 위치는 해당 모델 서비스를 지원하지 않습니다. 지역 제한 또는 서비스 미개통으로 인한 것일 수 있습니다. 현재 위치가 해당 서비스를 지원하는지 확인하거나 다른 위치 정보를 사용해 보십시오.",
|
|
48
49
|
"MoonshotBizError": "요청한 문샷 비즈니스에 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
|
|
49
50
|
"NoOpenAIAPIKey": "OpenAI API 키가 비어 있습니다. 사용자 정의 OpenAI API 키를 추가해주세요.",
|
|
50
51
|
"OllamaBizError": "Ollama 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
|
|
51
52
|
"OpenAIBizError": "OpenAI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 문제를 해결하거나 다시 시도해주세요.",
|
|
53
|
+
"PerplexityBizError": "Perplexity AI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
|
|
52
54
|
"PluginApiNotFound": "죄송합니다. 플러그인 설명서에 해당 API가 없습니다. 요청 메서드와 플러그인 설명서 API가 일치하는지 확인해주세요.",
|
|
53
55
|
"PluginApiParamsError": "죄송합니다. 플러그인 요청의 입력 매개변수 유효성 검사에 실패했습니다. 입력 매개변수와 API 설명 정보가 일치하는지 확인해주세요.",
|
|
54
56
|
"PluginGatewayError": "죄송합니다. 플러그인 게이트웨이에 오류가 발생했습니다. 플러그인 게이트웨이 구성을 확인해주세요.",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "OpenAI API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
|
|
90
92
|
"title": "사용자 정의 OpenAI API Key 사용"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Perplexity API 키를 입력하면 대화를 시작할 수 있습니다. 애플리케이션은 API 키를 기록하지 않습니다.",
|
|
96
|
+
"title": "사용자 지정 Perplexity API 키 사용"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Zhipu API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
|
|
94
100
|
"title": "사용자 정의 Zhipu API Key 사용"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Perplexity AI 에서 제공하는 API 키를 입력하세요",
|
|
145
|
+
"placeholder": "Perplexity AI API 키",
|
|
146
|
+
"title": "API 키"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|
package/locales/nl-NL/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Incorrect or empty Google API Key, please check the Google API Key and retry",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Moonshot AI API密钥不正确或为空,请检查Moonshot API密钥后重试",
|
|
45
45
|
"InvalidOllamaArgs": "Ollama-configuratie is onjuist, controleer de Ollama-configuratie en probeer het opnieuw",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Perplexity API Key is onjuist of leeg. Controleer de Perplexity API Key en probeer het opnieuw.",
|
|
46
47
|
"InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
|
|
47
48
|
"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.",
|
|
48
49
|
"MoonshotBizError": "请求月球AI服务出错,请根据以下信息排查或重试",
|
|
49
50
|
"NoOpenAIAPIKey": "OpenAI API-sleutel ontbreekt. Voeg een aangepaste OpenAI API-sleutel toe",
|
|
50
51
|
"OllamaBizError": "Fout bij het aanroepen van de Ollama-service, controleer de onderstaande informatie en probeer opnieuw",
|
|
51
52
|
"OpenAIBizError": "Fout bij het aanvragen van OpenAI-service. Controleer de onderstaande informatie voor probleemoplossing of probeer opnieuw",
|
|
53
|
+
"PerplexityBizError": "Er is een fout opgetreden bij het aanvragen van de Perplexity AI-service. Controleer de onderstaande informatie en probeer het opnieuw.",
|
|
52
54
|
"PluginApiNotFound": "Sorry, de API van de plug-inbeschrijvingslijst bestaat niet. Controleer of uw verzoeksmethode overeenkomt met de plug-inbeschrijvingslijst API",
|
|
53
55
|
"PluginApiParamsError": "Sorry, de validatie van de invoerparameters van de plug-in is mislukt. Controleer of de invoerparameters overeenkomen met de API-beschrijving",
|
|
54
56
|
"PluginGatewayError": "Sorry, er is een fout opgetreden in de plug-in gateway. Controleer of de plug-in gatewayconfiguratie juist is",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Enter your OpenAI API Key to start the session. The app will not record your API Key",
|
|
90
92
|
"title": "Use custom OpenAI API Key"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Voer uw eigen Perplexity API Key in om het gesprek te starten. De app zal uw API Key niet opslaan.",
|
|
96
|
+
"title": "Gebruik een aangepaste Perplexity API Key"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Enter your Zhipu API Key to start the session. The app will not record your API Key",
|
|
94
100
|
"title": "Use custom Zhipu API Key"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Azure OpenAI gebruiken"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Voer de API-sleutel in van Perplexity AI",
|
|
145
|
+
"placeholder": "Perplexity AI API-sleutel",
|
|
146
|
+
"title": "API-sleutel"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|
package/locales/pl-PL/error.json
CHANGED
|
@@ -43,12 +43,14 @@
|
|
|
43
43
|
"InvalidGoogleAPIKey": "Nieprawidłowy lub pusty klucz API Google, prosimy sprawdzić klucz API Google i spróbować ponownie.",
|
|
44
44
|
"InvalidMoonshotAPIKey": "Moonshot AI API密钥不正确或为空,请检查Moonshot API密钥后重试",
|
|
45
45
|
"InvalidOllamaArgs": "Nieprawidłowa konfiguracja Ollama, sprawdź konfigurację Ollama i spróbuj ponownie",
|
|
46
|
+
"InvalidPerplexityAPIKey": "Klucz API Perplexity jest nieprawidłowy lub pusty. Sprawdź klucz API Perplexity i spróbuj ponownie.",
|
|
46
47
|
"InvalidZhipuAPIKey": "Nieprawidłowy lub pusty klucz API Zhipu, prosimy sprawdzić klucz API Zhipu i spróbować ponownie.",
|
|
47
48
|
"LocationNotSupportError": "Przepraszamy, Twoja lokalizacja nie obsługuje tego usługi modelu, być może ze względu na ograniczenia regionalne lub brak dostępności usługi. Proszę sprawdź, czy bieżąca lokalizacja obsługuje tę usługę, lub spróbuj użyć innych informacji o lokalizacji.",
|
|
48
49
|
"MoonshotBizError": "请求月球AI服务出错,请根据以下信息排查或重试",
|
|
49
50
|
"NoOpenAIAPIKey": "Klucz API OpenAI jest pusty. Proszę dodać niestandardowy klucz API OpenAI",
|
|
50
51
|
"OllamaBizError": "Błąd usługi Ollama, sprawdź poniższe informacje lub spróbuj ponownie",
|
|
51
52
|
"OpenAIBizError": "Błąd żądania usługi OpenAI. Proszę sprawdź poniższe informacje i spróbuj ponownie",
|
|
53
|
+
"PerplexityBizError": "Błąd biznesowy podczas żądania usługi Perplexity AI. Sprawdź poniższe informacje lub spróbuj ponownie.",
|
|
52
54
|
"PluginApiNotFound": "Przepraszamy, w manifestach wtyczki nie istnieje to API. Proszę sprawdź, czy metoda żądania jest zgodna z API w manifestach wtyczki",
|
|
53
55
|
"PluginApiParamsError": "Przepraszamy, walidacja parametrów wejściowych żądanej wtyczki nie powiodła się. Proszę sprawdź, czy parametry wejściowe są zgodne z informacjami opisującymi API",
|
|
54
56
|
"PluginGatewayError": "Przepraszamy, wystąpił błąd bramy wtyczki. Proszę sprawdź, czy konfiguracja bramy wtyczki jest poprawna",
|
|
@@ -89,6 +91,10 @@
|
|
|
89
91
|
"description": "Wprowadź swój klucz API OpenAI, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
|
|
90
92
|
"title": "Użyj niestandardowego klucza API OpenAI"
|
|
91
93
|
},
|
|
94
|
+
"Perplexity": {
|
|
95
|
+
"description": "Wprowadź swój klucz API Perplexity, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
|
|
96
|
+
"title": "Użyj niestandardowego klucza API Perplexity"
|
|
97
|
+
},
|
|
92
98
|
"Zhipu": {
|
|
93
99
|
"description": "Wprowadź swój klucz API Zhipu, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
|
|
94
100
|
"title": "Użyj niestandardowego klucza API Zhipu"
|
|
@@ -138,6 +138,14 @@
|
|
|
138
138
|
"title": "Użyj Azure OpenAI"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"Perplexity": {
|
|
142
|
+
"title": "Perplexity",
|
|
143
|
+
"token": {
|
|
144
|
+
"desc": "Wprowadź klucz API od Perplexity AI",
|
|
145
|
+
"placeholder": "Klucz API Perplexity AI",
|
|
146
|
+
"title": "Klucz API"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
141
149
|
"Zhipu": {
|
|
142
150
|
"title": "智谱",
|
|
143
151
|
"token": {
|