@lobehub/chat 0.155.9 → 0.156.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/Dockerfile +1 -1
  3. package/locales/ar/modelProvider.json +2 -17
  4. package/locales/ar/setting.json +4 -1
  5. package/locales/bg-BG/modelProvider.json +2 -17
  6. package/locales/bg-BG/setting.json +4 -1
  7. package/locales/de-DE/modelProvider.json +2 -17
  8. package/locales/de-DE/setting.json +4 -1
  9. package/locales/en-US/modelProvider.json +2 -17
  10. package/locales/en-US/setting.json +4 -1
  11. package/locales/es-ES/modelProvider.json +2 -17
  12. package/locales/es-ES/setting.json +4 -1
  13. package/locales/fr-FR/modelProvider.json +2 -17
  14. package/locales/fr-FR/setting.json +4 -1
  15. package/locales/it-IT/modelProvider.json +2 -17
  16. package/locales/it-IT/setting.json +4 -1
  17. package/locales/ja-JP/modelProvider.json +2 -17
  18. package/locales/ja-JP/setting.json +4 -1
  19. package/locales/ko-KR/modelProvider.json +2 -17
  20. package/locales/ko-KR/setting.json +4 -1
  21. package/locales/nl-NL/modelProvider.json +2 -17
  22. package/locales/nl-NL/setting.json +4 -1
  23. package/locales/pl-PL/modelProvider.json +2 -17
  24. package/locales/pl-PL/setting.json +4 -1
  25. package/locales/pt-BR/modelProvider.json +2 -17
  26. package/locales/pt-BR/setting.json +4 -1
  27. package/locales/ru-RU/modelProvider.json +2 -17
  28. package/locales/ru-RU/setting.json +4 -1
  29. package/locales/tr-TR/modelProvider.json +2 -17
  30. package/locales/tr-TR/setting.json +4 -1
  31. package/locales/vi-VN/modelProvider.json +2 -17
  32. package/locales/vi-VN/setting.json +4 -1
  33. package/locales/zh-CN/error.json +1 -1
  34. package/locales/zh-CN/modelProvider.json +3 -18
  35. package/locales/zh-CN/setting.json +4 -1
  36. package/locales/zh-TW/modelProvider.json +2 -17
  37. package/locales/zh-TW/setting.json +4 -1
  38. package/package.json +1 -1
  39. package/src/app/(main)/settings/llm/Anthropic/index.tsx +3 -1
  40. package/src/app/(main)/settings/llm/Google/index.tsx +3 -1
  41. package/src/app/(main)/settings/llm/Groq/index.tsx +3 -0
  42. package/src/app/(main)/settings/llm/Ollama/index.tsx +8 -4
  43. package/src/app/(main)/settings/llm/OpenAI/index.tsx +5 -1
  44. package/src/app/(main)/settings/llm/Perplexity/index.tsx +3 -0
  45. package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +12 -7
  46. package/src/app/api/chat/agentRuntime.ts +30 -35
  47. package/src/config/modelProviders/groq.ts +6 -6
  48. package/src/config/modelProviders/togetherai.ts +0 -22
  49. package/src/config/server/provider.ts +4 -0
  50. package/src/libs/agent-runtime/anthropic/index.ts +28 -13
  51. package/src/libs/agent-runtime/azureOpenai/index.test.ts +53 -0
  52. package/src/libs/agent-runtime/azureOpenai/index.ts +29 -2
  53. package/src/libs/agent-runtime/groq/index.ts +7 -0
  54. package/src/libs/agent-runtime/perplexity/index.test.ts +2 -2
  55. package/src/libs/agent-runtime/perplexity/index.ts +28 -76
  56. package/src/libs/agent-runtime/utils/anthropicHelpers.test.ts +64 -1
  57. package/src/libs/agent-runtime/utils/anthropicHelpers.ts +18 -2
  58. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +12 -1
  59. package/src/locales/default/error.ts +1 -1
  60. package/src/locales/default/modelProvider.ts +2 -18
  61. package/src/locales/default/setting.ts +4 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,85 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.156.1](https://github.com/lobehub/lobe-chat/compare/v0.156.0...v0.156.1)
6
+
7
+ <sup>Released on **2024-05-10**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Azure OpenAI Vision models issue.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Azure OpenAI Vision models issue, closes [#2429](https://github.com/lobehub/lobe-chat/issues/2429) ([9b8a4b1](https://github.com/lobehub/lobe-chat/commit/9b8a4b1))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ## [Version 0.156.0](https://github.com/lobehub/lobe-chat/compare/v0.155.9...v0.156.0)
31
+
32
+ <sup>Released on **2024-05-09**</sup>
33
+
34
+ #### ♻ Code Refactoring
35
+
36
+ - **misc**: Refactor to improve provider locale.
37
+
38
+ #### ✨ Features
39
+
40
+ - **misc**: Support perplexity proxy url.
41
+
42
+ #### 🐛 Bug Fixes
43
+
44
+ - **misc**: Fix anthropic messages need pairs, fix parameter conditions for perplexity, fix Perplexity duplicate token.
45
+
46
+ #### 💄 Styles
47
+
48
+ - **misc**: Improve groq location error, improve location error, improve model provider ux, support groq proxy url.
49
+
50
+ <br/>
51
+
52
+ <details>
53
+ <summary><kbd>Improvements and Fixes</kbd></summary>
54
+
55
+ #### Code refactoring
56
+
57
+ - **misc**: Refactor to improve provider locale ([538b7bc](https://github.com/lobehub/lobe-chat/commit/538b7bc))
58
+
59
+ #### What's improved
60
+
61
+ - **misc**: Support perplexity proxy url ([30bbe61](https://github.com/lobehub/lobe-chat/commit/30bbe61))
62
+
63
+ #### What's fixed
64
+
65
+ - **misc**: Fix anthropic messages need pairs ([0e01db0](https://github.com/lobehub/lobe-chat/commit/0e01db0))
66
+ - **misc**: Fix parameter conditions for perplexity ([156cf5f](https://github.com/lobehub/lobe-chat/commit/156cf5f))
67
+ - **misc**: Fix Perplexity duplicate token ([6695c4b](https://github.com/lobehub/lobe-chat/commit/6695c4b))
68
+
69
+ #### Styles
70
+
71
+ - **misc**: Improve groq location error ([023c21b](https://github.com/lobehub/lobe-chat/commit/023c21b))
72
+ - **misc**: Improve location error ([862c0ae](https://github.com/lobehub/lobe-chat/commit/862c0ae))
73
+ - **misc**: Improve model provider ux, closes [#2439](https://github.com/lobehub/lobe-chat/issues/2439) ([0deb079](https://github.com/lobehub/lobe-chat/commit/0deb079))
74
+ - **misc**: Support groq proxy url ([ba1ba2a](https://github.com/lobehub/lobe-chat/commit/ba1ba2a))
75
+
76
+ </details>
77
+
78
+ <div align="right">
79
+
80
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
81
+
82
+ </div>
83
+
5
84
  ### [Version 0.155.9](https://github.com/lobehub/lobe-chat/compare/v0.155.8...v0.155.9)
6
85
 
7
86
  <sup>Released on **2024-05-09**</sup>
package/Dockerfile CHANGED
@@ -45,7 +45,7 @@ ENV NEXT_PUBLIC_UMAMI_SCRIPT_URL ""
45
45
  ENV NEXT_PUBLIC_UMAMI_WEBSITE_ID ""
46
46
 
47
47
 
48
- RUN pnpm run build:docker # run build standalone for docker version
48
+ RUN npm run build:docker # run build standalone for docker version
49
49
 
50
50
  ## Production image, copy all the files and run next
51
51
  FROM base AS runner
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "يجب أن يتضمن العنوان، بخلاف الافتراضي، http(s)://",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "عنوان وكيل API"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "أدخل مفتاح API الخاص بـ Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "بالإضافة إلى العنوان الافتراضي، يجب أن يتضمن http(s)://",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "عنوان وكيل API"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "أدخل مفتاح API الخاص بـ Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "اختبر ما إذا تم إدخال عنوان الوكيل بشكل صحيح"
126
+ "desc": "اختبر ما إذا تم إدخال عنوان الوكيل بشكل صحيح",
127
+ "title": "فحص الاتصال"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "أضف نماذج مخصصة، استخدم الفاصلة (،) لفصل عدة نماذج",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "أدخل عنوان واجهة برمجة التطبيقات الخاص بـ Ollama، إذا لم يتم تحديده محليًا، يمكن تركه فارغًا",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "عنوان وكيل الواجهة"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "يجب أن يتضمن العنوان، بخلاف الافتراضي، http(s)://",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "عنوان وكيل الواجهة"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "استخدم مفتاح OpenAI الخاص بك",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "فحص",
40
40
  "desc": "اختبار ما إذا كان مفتاح واجهة البرمجة وعنوان الوكيل مملوء بشكل صحيح",
41
- "ollamaDesc": "اختبار عنوان الوكيل للتأكد من صحة الملء",
42
41
  "pass": "تمت المراقبة",
43
42
  "title": "فحص الاتصال"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "قائمة النماذج",
97
96
  "total": "متاح {{count}} نموذج"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "يجب أن يتضمن عنوان الوكيل API بالإضافة إلى العنوان الافتراضي http(s)://",
100
+ "title": "عنوان وكيل API"
101
+ },
99
102
  "waitingForMore": "يتم <1>التخطيط لتوفير</1> المزيد من النماذج، ترقبوا المزيد ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "Освен адреса по подразбиране, задължително трябва да включва http(s)://",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "Адрес на API прокси"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Въведете API Key, получен от Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "Изисква се адрес, включително http(s)://, освен ако не е по подразбиране",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "Адрес на API прокси"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Въведете API Key, получен от Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Тестване дали адресът на прокси е попълнен правилно"
126
+ "desc": "Тестване дали адресът на прокси е попълнен правилно",
127
+ "title": "Проверка на свързаност"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Добавяне на персонализирани модели, използвайте запетая (,) за разделяне на множество модели",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Въведете адрес на Ollama интерфейсния прокси, оставете празно, ако локално не е указано специално",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Адрес на прокси интерфейс"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "Освен адреса по подразбиране, задължително трябва да включва http(s)://",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Адрес на прокси интерфейс"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Използвайте собствения си OpenAI Key",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Провери",
40
40
  "desc": "Проверете дали API ключът и адресът на прокси сървъра са попълнени правилно",
41
- "ollamaDesc": "Проверете дали адресът на прокси се попълва правилно",
42
41
  "pass": "Проверката е успешна",
43
42
  "title": "Проверка на свързаността"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Списък с модели",
97
96
  "total": "Общо {{count}} налични модела"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Включващ адреса по подразбиране, трябва да включва http(s)://",
100
+ "title": "Адрес на API прокси"
101
+ },
99
102
  "waitingForMore": "Още модели са <1>планирани да бъдат добавени</1>, очаквайте ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "Muss neben der Standardadresse auch http(s):// enthalten",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "API-Proxy-Adresse"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Geben Sie Ihren API-Key von Anthropic ein",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "除默认地址外,必须包含 http(s)://",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "API 代理地址"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Geben Sie Ihren API-Key von Google ein",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde"
126
+ "desc": "Testen Sie, ob die Proxy-Adresse korrekt eingetragen wurde",
127
+ "title": "Konnektivitätsprüfung"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Fügen Sie benutzerdefinierte Modelle hinzu, trennen Sie mehrere Modelle mit Kommas (,)",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Geben Sie die Proxy-Adresse der Ollama-Schnittstelle ein, leer lassen, wenn lokal nicht spezifiziert",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Schnittstellen-Proxy-Adresse"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "Muss neben der Standardadresse auch http(s):// enthalten",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Schnittstellen-Proxy-Adresse"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Verwenden Sie Ihren eigenen OpenAI-Key",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Überprüfen",
40
40
  "desc": "Überprüfen Sie, ob der API-Schlüssel und die Proxy-Adresse korrekt eingegeben wurden",
41
- "ollamaDesc": "Testen Sie, ob die Proxy-Adresse korrekt eingegeben wurde",
42
41
  "pass": "Überprüfung bestanden",
43
42
  "title": "Konnektivitätsprüfung"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Modellliste",
97
96
  "total": "Insgesamt {{count}} Modelle verfügbar"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Außer der Standardadresse muss http(s):// enthalten sein",
100
+ "title": "API-Proxy-Adresse"
101
+ },
99
102
  "waitingForMore": "Weitere Modelle werden <1>geplant</1>, bitte freuen Sie sich auf weitere Updates ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "Must include http(s):// in addition to the default address",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "API Proxy Address"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Enter the API Key from Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "Must include http(s):// besides the default address",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "API Proxy Address"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Enter the API Key from Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Test if the proxy address is correctly filled in"
126
+ "desc": "Test if the proxy address is correctly filled in",
127
+ "title": "Connectivity Check"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Add custom models, separate multiple models with commas",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Enter the Ollama interface proxy address, leave blank if not specified locally",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Interface proxy address"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "Must include http(s):// besides the default address",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Interface proxy address"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Use your own OpenAI Key",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Check",
40
40
  "desc": "Test if the Api Key and proxy address are filled in correctly",
41
- "ollamaDesc": "Check if the proxy address is filled in correctly",
42
41
  "pass": "Check Passed",
43
42
  "title": "Connectivity Check"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Model List",
97
96
  "total": "{{count}} models available in total"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Must include http(s):// in addition to the default address",
100
+ "title": "API Proxy Address"
101
+ },
99
102
  "waitingForMore": "More models are <1>planned to be added</1>, stay tuned ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "Además de la dirección predeterminada, debe incluir http(s)://",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "Dirección del proxy de API"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Introduce la clave API proporcionada por Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "Aparte de la dirección predeterminada, debe incluir http(s)://",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "Dirección del proxy de la API"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Introduce la clave API proporcionada por Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Prueba si la dirección del proxy de la interfaz se ha introducido correctamente"
126
+ "desc": "Prueba si la dirección del proxy de la interfaz se ha introducido correctamente",
127
+ "title": "Comprobación de conectividad"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Añade modelos personalizados, separa múltiples modelos con comas (,)",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Introduce la dirección del proxy de la interfaz de Ollama, déjalo en blanco si no se ha especificado localmente",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Dirección del proxy de la interfaz"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "Además de la dirección predeterminada, debe incluir http(s)://",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Dirección del proxy de la interfaz"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Usa tu propia clave de OpenAI",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Comprobar",
40
40
  "desc": "Comprueba si la clave API y la dirección del proxy están escritas correctamente",
41
- "ollamaDesc": "Verifica si la dirección del proxy está correctamente completada",
42
41
  "pass": "Comprobación exitosa",
43
42
  "title": "Comprobación de conectividad"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Lista de modelos",
97
96
  "total": "Total de {{count}} modelos disponibles"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Además de la dirección predeterminada, debe incluir http(s)://",
100
+ "title": "Dirección del proxy de la API"
101
+ },
99
102
  "waitingForMore": "Más modelos están en <1>planificación para su incorporación</1>, ¡estén atentos! ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "En dehors de l'adresse par défaut, doit inclure http(s)://",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "Adresse de l'API Proxy"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Saisissez la clé API d'Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "Incluez http(s):// en plus de l'adresse par défaut",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "Adresse du proxy API"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Saisissez la clé API de Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Vérifiez si l'adresse du proxy est correctement saisie"
126
+ "desc": "Vérifiez si l'adresse du proxy est correctement saisie",
127
+ "title": "Vérification de la connectivité"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Ajoutez un modèle personnalisé, séparez les modèles multiples par des virgules (,)",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Saisissez l'adresse du proxy Ollama, laissez vide si non spécifié localement",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Adresse du proxy"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "En dehors de l'adresse par défaut, doit inclure http(s)://",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Adresse du proxy"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Utilisez votre propre clé OpenAI",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Vérifier",
40
40
  "desc": "Vérifie si la clé API et l'adresse du proxy sont correctement renseignées",
41
- "ollamaDesc": "Vérifiez si l'adresse du proxy est correctement renseignée",
42
41
  "pass": "Vérification réussie",
43
42
  "title": "Vérification de la connectivité"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Liste des modèles",
97
96
  "total": "{{count}} modèles disponibles au total"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Doit inclure http(s):// en plus de l'adresse par défaut",
100
+ "title": "Adresse du proxy de l'API"
101
+ },
99
102
  "waitingForMore": "Plus de modèles sont en cours de <1>planification pour être ajoutés</1>, restez à l'écoute ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "Deve includere http(s):// oltre all'indirizzo predefinito",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "Indirizzo API Proxy"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "Inserisci la chiave API da Anthropic",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "Deve includere http(s):// oltre all'indirizzo predefinito",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "Indirizzo dell'API Proxy"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Inserisci la chiave API da Google",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "Verifica se l'indirizzo del proxy è stato compilato correttamente"
126
+ "desc": "Verifica se l'indirizzo del proxy è stato compilato correttamente",
127
+ "title": "Controllo della connettività"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "Aggiungi modelli personalizzati, separati da virgola (,)",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Inserisci l'indirizzo del proxy dell'interfaccia Ollama. Lascia vuoto se non specificato localmente",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "Indirizzo del proxy dell'interfaccia"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "Deve includere http(s):// oltre all'indirizzo predefinito",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "Indirizzo del proxy dell'interfaccia"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "Utilizza la tua chiave OpenAI",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "Verifica",
40
40
  "desc": "Verifica se la chiave API e l'indirizzo del proxy sono stati inseriti correttamente",
41
- "ollamaDesc": "Verifica se l'indirizzo del proxy è stato compilato correttamente",
42
41
  "pass": "Verifica superata",
43
42
  "title": "Verifica di connettività"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "Elenco dei modelli",
97
96
  "total": "Totale modelli disponibili: {{count}}"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "Deve includere http(s):// oltre all'indirizzo predefinito",
100
+ "title": "Indirizzo del proxy API"
101
+ },
99
102
  "waitingForMore": "Altri modelli sono in fase di <1> pianificazione per l'integrazione </1>, resta sintonizzato ✨"
100
103
  },
101
104
  "ollama": {
@@ -1,10 +1,5 @@
1
1
  {
2
2
  "anthropic": {
3
- "endpoint": {
4
- "desc": "デフォルトアドレス以外は、http(s)://を含む必要があります",
5
- "placeholder": "https://api.anthropic.com",
6
- "title": "APIプロキシアドレス"
7
- },
8
3
  "title": "Anthropic",
9
4
  "token": {
10
5
  "desc": "AnthropicからのAPIキーを入力してください",
@@ -67,11 +62,6 @@
67
62
  }
68
63
  },
69
64
  "google": {
70
- "endpoint": {
71
- "desc": "デフォルトのアドレスに加えて、http(s)://を含める必要があります",
72
- "placeholder": "https://generativelanguage.googleapis.com",
73
- "title": "APIプロキシアドレス"
74
- },
75
65
  "title": "Google",
76
66
  "token": {
77
67
  "desc": "Google の API Key を入力してください",
@@ -133,7 +123,8 @@
133
123
  },
134
124
  "ollama": {
135
125
  "checker": {
136
- "desc": "プロキシアドレスが正しく入力されているかをテストします"
126
+ "desc": "プロキシアドレスが正しく入力されているかをテストします",
127
+ "title": "連結性チェック"
137
128
  },
138
129
  "customModelName": {
139
130
  "desc": "カスタムモデルを追加します。複数のモデルはカンマ(,)で区切ります",
@@ -142,7 +133,6 @@
142
133
  },
143
134
  "endpoint": {
144
135
  "desc": "Ollamaプロキシインターフェースアドレスを入力してください。ローカルで追加の指定がない場合は空白のままにしてください",
145
- "placeholder": "http://127.0.0.1:11434",
146
136
  "title": "プロキシインターフェースアドレス"
147
137
  },
148
138
  "setup": {
@@ -172,11 +162,6 @@
172
162
  "title": "Ollama"
173
163
  },
174
164
  "openai": {
175
- "endpoint": {
176
- "desc": "デフォルト以外のアドレスは、http(s)://を含める必要があります",
177
- "placeholder": "https://api.openai.com/v1",
178
- "title": "プロキシインターフェースアドレス"
179
- },
180
165
  "title": "OpenAI",
181
166
  "token": {
182
167
  "desc": "独自のOpenAIキーを使用します",
@@ -38,7 +38,6 @@
38
38
  "checker": {
39
39
  "button": "チェック",
40
40
  "desc": "APIキーとプロキシアドレスが正しく記入されているかをテスト",
41
- "ollamaDesc": "代理アドレスが正しく入力されているかをテストします",
42
41
  "pass": "チェック合格",
43
42
  "title": "接続性チェック"
44
43
  },
@@ -96,6 +95,10 @@
96
95
  "title": "モデルリスト",
97
96
  "total": "合計 {{count}} 個のモデルが利用可能です"
98
97
  },
98
+ "proxyUrl": {
99
+ "desc": "デフォルトのアドレスに加えて、http(s)://を含める必要があります",
100
+ "title": "APIプロキシアドレス"
101
+ },
99
102
  "waitingForMore": "さらに多くのモデルが <1>計画されています</1>。お楽しみに ✨"
100
103
  },
101
104
  "ollama": {