@lobehub/chat 0.135.4 → 0.137.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.
Files changed (83) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docs/self-hosting/advanced/authentication.mdx +14 -81
  5. package/docs/self-hosting/advanced/authentication.zh-CN.mdx +14 -75
  6. package/docs/self-hosting/advanced/sso-providers/auth0.mdx +91 -0
  7. package/docs/self-hosting/advanced/sso-providers/auth0.zh-CN.mdx +85 -0
  8. package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.mdx +69 -0
  9. package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.zh-CN.mdx +75 -0
  10. package/docs/self-hosting/environment-variables/basic.mdx +37 -1
  11. package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +36 -1
  12. package/docs/self-hosting/environment-variables/model-provider.mdx +0 -2
  13. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +0 -1
  14. package/docs/self-hosting/start.mdx +1 -9
  15. package/docs/usage/features/agent-market.mdx +1 -1
  16. package/docs/usage/features/tts.mdx +0 -3
  17. package/docs/usage/features/vision.mdx +0 -1
  18. package/docs/usage/providers/ollama/gemma.mdx +0 -1
  19. package/docs/usage/providers/ollama.mdx +0 -3
  20. package/docs/usage/start.mdx +1 -1
  21. package/docs/usage/start.zh-CN.mdx +1 -1
  22. package/locales/ar/error.json +8 -0
  23. package/locales/ar/setting.json +9 -1
  24. package/locales/de-DE/error.json +8 -0
  25. package/locales/de-DE/setting.json +9 -1
  26. package/locales/en-US/error.json +8 -0
  27. package/locales/en-US/setting.json +9 -1
  28. package/locales/es-ES/error.json +8 -0
  29. package/locales/es-ES/setting.json +9 -1
  30. package/locales/fr-FR/error.json +8 -0
  31. package/locales/fr-FR/setting.json +9 -1
  32. package/locales/it-IT/error.json +8 -0
  33. package/locales/it-IT/setting.json +9 -1
  34. package/locales/ja-JP/error.json +8 -0
  35. package/locales/ja-JP/setting.json +9 -1
  36. package/locales/ko-KR/error.json +8 -0
  37. package/locales/ko-KR/setting.json +9 -1
  38. package/locales/nl-NL/error.json +8 -0
  39. package/locales/nl-NL/setting.json +9 -1
  40. package/locales/pl-PL/error.json +8 -0
  41. package/locales/pl-PL/setting.json +9 -1
  42. package/locales/pt-BR/error.json +8 -0
  43. package/locales/pt-BR/setting.json +9 -1
  44. package/locales/ru-RU/error.json +8 -0
  45. package/locales/ru-RU/setting.json +9 -1
  46. package/locales/tr-TR/error.json +8 -0
  47. package/locales/tr-TR/setting.json +9 -1
  48. package/locales/vi-VN/error.json +8 -0
  49. package/locales/vi-VN/setting.json +9 -1
  50. package/locales/zh-CN/error.json +8 -0
  51. package/locales/zh-CN/setting.json +9 -1
  52. package/locales/zh-TW/error.json +8 -0
  53. package/locales/zh-TW/setting.json +9 -1
  54. package/package.json +3 -2
  55. package/src/app/api/auth/next-auth.ts +39 -12
  56. package/src/app/api/config/route.ts +3 -2
  57. package/src/app/api/errorResponse.ts +2 -1
  58. package/src/app/settings/common/Common.tsx +1 -1
  59. package/src/app/settings/llm/Ollama/Checker.tsx +73 -0
  60. package/src/app/settings/llm/Ollama/index.tsx +2 -4
  61. package/src/app/settings/llm/components/Checker.tsx +23 -17
  62. package/src/components/ModelIcon/index.tsx +2 -0
  63. package/src/components/ModelTag/ModelIcon.tsx +2 -0
  64. package/src/config/modelProviders/ollama.ts +14 -0
  65. package/src/config/server/app.ts +4 -0
  66. package/src/config/server/provider.ts +2 -0
  67. package/src/features/Conversation/Error/InvalidOllamaModel/index.tsx +138 -0
  68. package/src/features/Conversation/Error/InvalidOllamaModel/useDownloadMonitor.ts +48 -0
  69. package/src/features/Conversation/Error/OAuthForm.tsx +1 -1
  70. package/src/features/Conversation/Error/OllamaBizError.tsx +34 -0
  71. package/src/features/Conversation/Error/index.tsx +5 -0
  72. package/src/features/Conversation/Error/style.tsx +2 -2
  73. package/src/locales/default/error.ts +8 -0
  74. package/src/locales/default/setting.ts +9 -1
  75. package/src/services/__tests__/ollama.test.ts +26 -0
  76. package/src/services/ollama.ts +64 -0
  77. package/src/store/global/slices/settings/selectors/modelProvider.ts +11 -10
  78. package/src/store/middleware/createHyperStorage/index.ts +1 -2
  79. package/src/store/middleware/createHyperStorage/indexedDB.ts +1 -1
  80. package/src/store/middleware/createHyperStorage/localStorage.ts +1 -1
  81. package/src/store/middleware/createHyperStorage/urlStorage.ts +1 -1
  82. package/src/types/fetch.ts +1 -0
  83. package/tsconfig.json +1 -1
@@ -0,0 +1,75 @@
1
+ import { Callout, Steps } from 'nextra/components';
2
+
3
+ # 配置 Microsoft Entra ID 身份验证服务
4
+
5
+ ## Microsoft Entra ID 配置流程
6
+
7
+ <Steps>
8
+ ### 创建 Microsoft Entra ID 应用
9
+
10
+ 在你的 [Microsoft Azure Portal][microsoft-azure-portal] 进入 Microsoft Entra ID -> App registrations -> New registration 创建一个新的应用。
11
+
12
+ 填写你想向组织用户显示的应用名称,选择你期望支持的账户类型,如果只支持内部用户请选择 `Accounts in this organizational directory only (Default Directory only - Single tenant)`。
13
+
14
+ 在 `Redirect URI (optional)` 中,应用类型选择 `Web`,Callback URL, 处填写:
15
+
16
+ ```bash
17
+ https://your-domain/api/auth/callback/azure-ad
18
+ ```
19
+
20
+ <Callout type={'info'}>
21
+ - 可以在 Register 后再填写或修改 Redirect URIs,但是务必保证填写的 URL 与部署的 URL 一致。
22
+ - your-domain 请填写自己的域名
23
+ </Callout>
24
+
25
+ ![App Register](https://github.com/lobehub/lobe-chat/assets/13883964/4f9d83bd-b3fc-4abc-bcf4-ccbad65c219d)
26
+
27
+ 点击「Register」
28
+
29
+ 创建成功后,点击相应的应用,进入应用详情页,切换到「Overview」标签页,就可以看到相应的配置信息。
30
+
31
+ ![App Overview](https://github.com/lobehub/lobe-chat/assets/13883964/48a0b702-05bd-4ce4-a007-a8ad00a36e5a)
32
+
33
+ 进入「Certificates & secrets」,选择「Client secrets」标签,点击「New client secret」,填写描述,选择过期时间,点击「Add」,创建一个新的客户端密钥。
34
+
35
+ ![Create App Client Secret](https://github.com/lobehub/lobe-chat/assets/13883964/c9d66fa0-158c-4bd3-a1fa-969e638259d2)
36
+
37
+ =<Callout type={'info'}>请务必保存好你的客户端密钥,因为这是你唯一的机会查看它。</Callout>
38
+
39
+ ### 新增用户
40
+
41
+ 回到「Microsoft Entra ID」界面,进入「Users」,点击「New user」,填写用户信息,点击「Create」,创建用户以使用 LobeChat。
42
+
43
+ ### 配置环境变量
44
+
45
+ 在部署 LobeChat 时,你需要配置以下环境变量:
46
+
47
+ | 环境变量 | 类型 | 描述 |
48
+ | --- | --- | --- |
49
+ | `ENABLE_OAUTH_SSO` | 必选 | 为 LobeChat 启用单点登录 (SSO)。设置为 `1` 以启用单点登录。 |
50
+ | `NEXTAUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
51
+ | `SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Microsoft Entra ID 请填写 `azure-ad`。 |
52
+ | `AZURE_AD_CLIENT_ID` | 必选 | Microsoft Entra ID 应用程序的 Client ID |
53
+ | `AZURE_AD_CLIENT_SECRET` | 必选 | Microsoft Entra ID 应用程序的 Client Secret |
54
+ | `AZURE_AD_TENANT_ID` | 必选 | Microsoft Entra ID 应用程序的 Tenant ID |
55
+ | `ACCESS_CODE` | 必选 | 添加访问此服务的密码,你可以设置一个足够长的随机密码以 “禁用” 访问码授权 |
56
+ | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
57
+
58
+ <Callout type={'info'}> 前往 [📘 环境变量](/zh/self-hosting/environment-variable#microsoft-entra-id) 可查阅相关变量详情。</Callout>
59
+ </Steps>
60
+
61
+ <Callout type={'info'}>
62
+ 部署成功后,用户将可以使用 Microsoft Entra ID 中配置的用户通过身份认证并使用 LobeChat。
63
+ </Callout>
64
+
65
+ ## 进阶配置
66
+
67
+ 请在 [Microsoft Entra ID 学习中心][microsoft-learn-entra],做进一步探索。
68
+
69
+ ## 相关资料
70
+
71
+ - [快速注册应用指导][microsoft-entra-register-app]
72
+
73
+ [microsoft-azure-portal]: https://portal.azure.com/
74
+ [microsoft-entra-register-app]: https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
75
+ [microsoft-learn-entra]: https://learn.microsoft.com/en-us/entra/identity/
@@ -64,6 +64,13 @@ Further reading:
64
64
  - Default: `-`
65
65
  - Example: `1`
66
66
 
67
+ #### `SSO_PROVIDERS`
68
+
69
+ - Type: Required
70
+ - Description: Select the single sign-on provider for LoboChat. For multiple SSO Providers separating them with commas, for example, `auth0,azure-ad`
71
+ - Default: `auth0`
72
+ - Example: `auth0,azure-ad`
73
+
67
74
  #### `NEXTAUTH_SECRET`
68
75
 
69
76
  - Type: Required
@@ -81,7 +88,7 @@ Further reading:
81
88
  ### Auth0
82
89
 
83
90
  <Callout>
84
- Currently, we only support the Auth0 identity verification service provider. If you need to use
91
+ Currently, we only support the Auth0, Microsoft Entra ID identity verification service providers. If you need to use
85
92
  other identity verification service providers, you can submit a [feature
86
93
  request](https://github.com/lobehub/lobe-chat/issues/new/choose) or Pull Request.
87
94
  </Callout>
@@ -107,6 +114,35 @@ Further reading:
107
114
  - Default: `-`
108
115
  - Example: `https://example.auth0.com`
109
116
 
117
+ ### Microsoft Entra ID
118
+
119
+ <Callout>
120
+ Currently, we only support the Auth0, Microsoft Entra ID identity verification service providers. If you need to use
121
+ other identity verification service providers, you can submit a [feature
122
+ request](https://github.com/lobehub/lobe-chat/issues/new/choose) or Pull Request.
123
+ </Callout>
124
+
125
+ #### `AZURE_AD_CLIENT_ID`
126
+
127
+ - Type: Required
128
+ - Description: Client ID of the Microsoft Entra ID application.
129
+ - Default: `-`
130
+ - Example: `be8f6da1-58c3-4f16-ff1b-78f5148e10df`
131
+
132
+ #### `AZURE_AD_CLIENT_SECRET`
133
+
134
+ - Type: Required
135
+ - Description: Client Secret of the Microsoft Entra ID application.
136
+ - Default: `-`
137
+ - Example: `~gI8Q.pTiN1vwB6Gl.E1yFT1ojcXABkdACfJXaNj`
138
+
139
+ #### `AZURE_AD_TENANT_ID`
140
+
141
+ - Type: Required
142
+ - Description: Tenant ID of the Microsoft Entra ID application.
143
+ - Default: `-`
144
+ - Example: `c8ae2f36-edf6-4cda-96b9-d3e198a47cba`
145
+
110
146
  ## Plugin Service
111
147
 
112
148
  ### `PLUGINS_INDEX_URL`
@@ -64,6 +64,13 @@ LobeChat 在部署时提供了一些额外的配置项,你可以使用环境
64
64
  - 默认值: `-`
65
65
  - 示例: `1`
66
66
 
67
+ #### `SSO_PROVIDERS`
68
+
69
+ - Type: 必需
70
+ - 描述:选择 LoboChat 的单点登录提供商。如果有多个单点登录提供商,请用逗号分隔,例如 `auth0,azure-ad`
71
+ - 默认值: `auth0`
72
+ - 示例: `auth0,azure-ad`
73
+
67
74
  #### `NEXTAUTH_SECRET`
68
75
 
69
76
  - 类型:必选
@@ -81,7 +88,7 @@ LobeChat 在部署时提供了一些额外的配置项,你可以使用环境
81
88
  ### Auth0
82
89
 
83
90
  <Callout>
84
- 目前我们只支持 Auth0 身份验证服务提供商。如果您需要使用其他身份验证服务提供商,可以提交
91
+ 目前,我们仅支持 Auth0 和 Microsoft Entra ID 身份验证服务提供商。如果您需要使用其他身份验证服务提供商,可以提交
85
92
  [功能请求](https://github.com/lobehub/lobe-chat/issues/new/choose) 或 Pull Request。
86
93
  </Callout>
87
94
 
@@ -106,6 +113,34 @@ LobeChat 在部署时提供了一些额外的配置项,你可以使用环境
106
113
  - 默认值: `-`
107
114
  - 示例: `https://example.auth0.com`
108
115
 
116
+ ### Microsoft Entra ID
117
+
118
+ <Callout>
119
+ 目前,我们仅支持 Auth0 和 Microsoft Entra ID 身份验证服务提供商。如果您需要使用其他身份验证服务提供商,可以提交
120
+ [功能请求](https://github.com/lobehub/lobe-chat/issues/new/choose) 或 Pull Request。
121
+ </Callout>
122
+
123
+ #### `AZURE_AD_CLIENT_ID`
124
+
125
+ - 类型:必需
126
+ - 描述:Microsoft Entra ID 应用程序的客户端 ID。
127
+ - 默认值:`-`
128
+ - 示例:`be8f6da1-58c3-4f16-ff1b-78f5148e10df`
129
+
130
+ #### `AZURE_AD_CLIENT_SECRET`
131
+
132
+ - 类型:必需
133
+ - 描述:Microsoft Entra ID 应用程序的客户端密钥。
134
+ - 默认值:`-`
135
+ - 示例:`~gI8Q.pTiN1vwB6Gl.E1yFT1ojcXABkdACfJXaNj`
136
+
137
+ #### `AZURE_AD_TENANT_ID`
138
+
139
+ - 类型:必需
140
+ - 描述:Microsoft Entra ID 应用程序的租户 ID。
141
+ - 默认值:`-`
142
+ - 示例:`c8ae2f36-edf6-4cda-96b9-d3e198a47cba`
143
+
109
144
  ## 插件服务
110
145
 
111
146
  ### `PLUGINS_INDEX_URL`
@@ -172,6 +172,4 @@ When using the `turn` mode, the API Keys will be retrieved in a round-robin mann
172
172
  - Default: -
173
173
  - Example: `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=`
174
174
 
175
-
176
175
  [azure-api-verion-url]: https://docs.microsoft.com/zh-cn/azure/developer/javascript/api-reference/es-modules/azure-sdk/ai-translation/translationconfiguration?view=azure-node-latest#api-version
177
- [openai-api-page]: https://platform.openai.com/account/api-keys
@@ -171,4 +171,3 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
171
171
  - 示例:`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=`
172
172
 
173
173
  [azure-api-verion-url]: https://docs.microsoft.com/zh-cn/azure/developer/javascript/api-reference/es-modules/azure-sdk/ai-translation/translationconfiguration?view=azure-node-latest#api-version
174
- [openai-api-page]: https://platform.openai.com/account/api-keys
@@ -6,12 +6,4 @@ Choose your favorite platform to get started.
6
6
 
7
7
  LobeChat support multiple deployment platforms, including Vercel, Docker, and Docker Compose and so on, you can choose the deployment platform that suits you.
8
8
 
9
- <PlatformCards
10
- docker={'Docker'}
11
- dockerCompose={'Docker Compose'}
12
- netlify={'Netlify'}
13
- repocloud={'RepoCloud'}
14
- sealos={'SealOS'}
15
- vercel={'Vercel'}
16
- zeabur={'Zeabur'}
17
- />
9
+ <PlatformCards docker={'Docker'} dockerCompose={'Docker Compose'} netlify={'Netlify'} repocloud={'RepoCloud'} sealos={'SealOS'} vercel={'Vercel'} zeabur={'Zeabur'} />
@@ -39,4 +39,4 @@ In LobeChat's Assistant Market, creators can discover a vibrant and innovative c
39
39
  | [Self-media Operation Expert](https://chat-preview.lobehub.com/market?agent=gl-zmtyy)<br /><sup>By **[guling-io](https://github.com/guling-io)** on **2024-02-14**</sup> | Proficient in self-media operation and content creation<br />`Self-media operation` `Social media` `Content creation` `Fan growth` `Brand promotion` |
40
40
  | [Product Description](https://chat-preview.lobehub.com/market?agent=product-description)<br /><sup>By **[pllz7](https://github.com/pllz7)** on **2024-02-14**</sup> | Create captivating product descriptions to improve e-commerce sales performance<br />`E-commerce` |
41
41
 
42
- > 📊 Total agents: [<kbd>**177**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
42
+ > 📊 Total agents: [<kbd>**177**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
@@ -2,9 +2,6 @@
2
2
  title: Speech Synthesis and Recognition (TTS & STT)
3
3
  ---
4
4
 
5
-
6
- import { Callout } from 'nextra/components';
7
-
8
5
  # TTS & STT Voice Conversation
9
6
 
10
7
  <Image
@@ -2,7 +2,6 @@
2
2
  title: Vision Recognition
3
3
  ---
4
4
 
5
-
6
5
  # Model Vision Recognition
7
6
 
8
7
  <Image
@@ -3,7 +3,6 @@ title: Using Google Gemma Model
3
3
  image: https://github.com/lobehub/lobe-chat/assets/28616219/817f5655-4f9e-414b-af9f-9ccc5410a06d
4
4
  ---
5
5
 
6
-
7
6
  import { Callout, Steps } from 'nextra/components';
8
7
 
9
8
  # Using Google Gemma Model
@@ -3,9 +3,6 @@ title: Using Ollama in LobeChat
3
3
  image: https://github.com/lobehub/lobe-chat/assets/28616219/bb5b3611-3aa8-4ec7-a6dc-f35a13b34d81
4
4
  ---
5
5
 
6
-
7
- import { Callout, Steps, Tabs } from 'nextra/components';
8
-
9
6
  # Using Ollama in LobeChat
10
7
 
11
8
  <Image alt={'Using Ollama in LobeChat'} cover src={'https://github.com/lobehub/lobe-chat/assets/28616219/a2a091b8-ac45-4679-b5e0-21d711e17fef'} />
@@ -29,6 +29,6 @@ image: https://github.com/lobehub/lobe-chat/assets/28616219/9be1a584-8b66-4bc4-a
29
29
 
30
30
  <ExperienceCards
31
31
  mobile={'Mobile Device Adaptation'}
32
- theme={'Custom Themes'}
33
32
  pwa={'Progressive Web App'}
33
+ theme={'Custom Themes'}
34
34
  />
@@ -25,4 +25,4 @@ image: https://github.com/lobehub/lobe-chat/assets/28616219/9be1a584-8b66-4bc4-a
25
25
 
26
26
  ## 体验特性
27
27
 
28
- <ExperienceCards mobile={'移动设备适配'} theme={'自定义主题'} pwa={'渐进式 Web 应用(PWA)'} />
28
+ <ExperienceCards mobile={'移动设备适配'} pwa={'渐进式 Web 应用(PWA)'} theme={'自定义主题'} />
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "حدث خطأ في خدمة جانب القمر، يرجى التحقق من المعلومات أدناه أو إعادة المحاولة",
54
54
  "NoOpenAIAPIKey": "مفتاح API الخاص بـ OpenAI فارغ، يرجى إضافة مفتاح API الخاص بـ OpenAI",
55
55
  "OllamaBizError": "خطأ في طلب خدمة Ollama، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
56
+ "OllamaServiceUnavailable": "خدمة Ollama غير متوفرة، يرجى التحقق مما إذا كانت قد تم تشغيلها بشكل صحيح",
56
57
  "OpenAIBizError": "حدث خطأ في طلب خدمة OpenAI، يرجى التحقق من المعلومات أدناه وإعادة المحاولة",
57
58
  "PerplexityBizError": "خطأ في طلب خدمة Perplexity AI، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
58
59
  "PluginApiNotFound": "عذرًا، لا يوجد API للإضافة في وصف الإضافة، يرجى التحقق من تطابق طريقة الطلب الخاصة بك مع API الوصف",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "إغلاق الرسالة",
116
117
  "confirm": "تأكيد وإعادة المحاولة",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "تحميل",
121
+ "description": "أدخل علامة نموذج Ollama الخاصة بك لاستكمال الجلسة",
122
+ "title": "تحميل نموذج Ollama المحدد"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "فتح المسؤول توثيق تسجيل الدخول الموحد، انقر فوق الزر أدناه لتسجيل الدخول وفتح التطبيق",
119
127
  "success": "تم تسجيل الدخول بنجاح",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "يتم <1>التخطيط لتوفير</1> المزيد من النماذج، ترقبوا المزيد ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "جارٍ تنزيل النموذج، يرجى عدم إغلاق هذه الصفحة. سيتم استئناف التنزيل من حيث توقف في حالة إعادة التنزيل",
199
+ "remainingTime": "الوقت المتبقي",
200
+ "speed": "سرعة التنزيل",
201
+ "title": "جارٍ تنزيل النموذج {{model}}"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "إضافة البرنامج المساعد",
198
206
  "clearDeprecated": "مسح البرامج المساعدة الغير صالحة",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "أدوات الامتداد"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "Fehler beim Abrufen des Dark Side of the Moon-Services. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
54
54
  "NoOpenAIAPIKey": "Der OpenAI-API-Schlüssel ist leer. Bitte fügen Sie einen benutzerdefinierten OpenAI-API-Schlüssel hinzu",
55
55
  "OllamaBizError": "Fehler bei der Anforderung des Ollama-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
56
+ "OllamaServiceUnavailable": "Ollama-Dienst nicht verfügbar. Bitte überprüfen Sie, ob er ordnungsgemäß gestartet wurde.",
56
57
  "OpenAIBizError": "Fehler bei der OpenAI-Serviceanfrage. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut",
57
58
  "PerplexityBizError": "Fehler bei der Anforderung des Perplexity AI-Dienstes. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
58
59
  "PluginApiNotFound": "Entschuldigung, das API des Plugins im Plugin-Manifest existiert nicht. Bitte überprüfen Sie, ob Ihre Anfragemethode mit dem Plugin-Manifest-API übereinstimmt",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "Hinweis schließen",
116
117
  "confirm": "Bestätigen und erneut versuchen",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "Herunterladen",
121
+ "description": "Geben Sie Ihre Ollama-Modellbezeichnung ein, um fortzufahren",
122
+ "title": "Bestimmtes Ollama-Modell herunterladen"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "Der Administrator hat die einheitliche Anmeldeauthentifizierung aktiviert. Klicken Sie unten auf die Schaltfläche, um sich anzumelden und die App zu entsperren.",
119
127
  "success": "Anmeldung erfolgreich",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "Weitere Modelle werden <1>geplant</1>, bitte freuen Sie sich auf weitere Updates ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "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.",
199
+ "remainingTime": "Verbleibende Zeit",
200
+ "speed": "Download-Geschwindigkeit",
201
+ "title": "Modell {{model}} wird heruntergeladen"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "Benutzerdefiniertes Plugin",
198
206
  "clearDeprecated": "Entfernen Sie ungültige Plugins",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "Erweiterungswerkzeuge"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "There was an error with the Moonshot service, please troubleshoot or retry based on the following information.",
54
54
  "NoOpenAIAPIKey": "OpenAI API Key is empty, please add a custom OpenAI API Key",
55
55
  "OllamaBizError": "Error requesting Ollama service, please troubleshoot or retry based on the following information",
56
+ "OllamaServiceUnavailable": "Ollama service not detected, please check if it is running properly",
56
57
  "OpenAIBizError": "Error requesting OpenAI service. Please troubleshoot or retry based on the following information.",
57
58
  "PerplexityBizError": "Error requesting Perplexity AI service. Please troubleshoot or retry based on the following information.",
58
59
  "PluginApiNotFound": "Sorry, the API does not exist in the plugin's manifest. Please check if your request method matches the plugin manifest API",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "Close message",
116
117
  "confirm": "Confirm and Retry",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "Download",
121
+ "description": "Enter your Ollama model label to proceed with the conversation",
122
+ "title": "Download specified Ollama model"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "The administrator has enabled unified login authentication. Click the button below to log in and unlock the application.",
119
127
  "success": "Login successful",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "More models are <1>planned to be added</1>, stay tuned ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama is currently downloading the model. Please try not to close this page. It will resume from where it left off if you restart the download.",
199
+ "remainingTime": "Remaining Time",
200
+ "speed": "Download Speed",
201
+ "title": "Downloading model {{model}}"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "Custom Plugin",
198
206
  "clearDeprecated": "Remove Deprecated Plugins",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "Extension Tools"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "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.",
54
54
  "NoOpenAIAPIKey": "La clave de API de OpenAI está vacía. Agregue una clave de API de OpenAI personalizada",
55
55
  "OllamaBizError": "Error al solicitar el servicio de Ollama, por favor verifica la siguiente información o inténtalo de nuevo",
56
+ "OllamaServiceUnavailable": "Servicio Ollama no disponible: Ollama no detectado. Por favor, verifica si está iniciado correctamente.",
56
57
  "OpenAIBizError": "Error al solicitar el servicio OpenAI. Depure o reintente según la siguiente información",
57
58
  "PerplexityBizError": "Error comercial al solicitar el servicio de IA de Perplexity. Por favor, revisa la siguiente información o inténtalo de nuevo",
58
59
  "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",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "Cerrar mensaje",
116
117
  "confirm": "Confirmar y volver a intentar",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "Descargar",
121
+ "description": "Ingresa las etiquetas de tu modelo Ollama para continuar la sesión",
122
+ "title": "Descargar el modelo Ollama especificado"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "El administrador ha habilitado la autenticación de inicio de sesión única. Haz clic en el botón a continuación para iniciar sesión y desbloquear la aplicación.",
119
127
  "success": "Inicio de sesión exitoso",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "Más modelos están en <1>planificación para su incorporación</1>, ¡estén atentos! ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama está descargando este modelo. Por favor, no cierres esta página. La descarga se reanudará desde donde se detuvo si se reinicia.",
199
+ "remainingTime": "Tiempo restante",
200
+ "speed": "Velocidad de descarga",
201
+ "title": "Descargando el modelo {{model}}"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "Agregar complemento personalizado",
198
206
  "clearDeprecated": "Eliminar complementos obsoletos",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "Herramientas de extensión"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "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.",
54
54
  "NoOpenAIAPIKey": "La clé API OpenAI est vide. Veuillez ajouter une clé API OpenAI personnalisée",
55
55
  "OllamaBizError": "Erreur commerciale lors de la demande de service Ollama, veuillez vérifier les informations ci-dessous ou réessayer",
56
+ "OllamaServiceUnavailable": "Service Ollama non disponible, veuillez vérifier s'il est démarré correctement",
56
57
  "OpenAIBizError": "Erreur de service OpenAI. Veuillez diagnostiquer ou réessayer en fonction des informations ci-dessous",
57
58
  "PerplexityBizError": "Erreur commerciale lors de la demande de service Perplexity AI. Veuillez vérifier les informations suivantes ou réessayer.",
58
59
  "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",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "Fermer le message",
116
117
  "confirm": "Confirmer et réessayer",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "Télécharger",
121
+ "description": "Saisissez l'étiquette de votre modèle Ollama pour continuer la session",
122
+ "title": "Télécharger le modèle Ollama spécifié"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "L'administrateur a activé l'authentification de connexion unique. Cliquez sur le bouton ci-dessous pour vous connecter et déverrouiller l'application.",
119
127
  "success": "Connexion réussie",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "Plus de modèles sont en cours de <1>planification pour être ajoutés</1>, restez à l'écoute ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama est en train de télécharger ce modèle. Veuillez ne pas fermer cette page. Le téléchargement reprendra là où il s'est arrêté en cas de reprise.",
199
+ "remainingTime": "Temps restant",
200
+ "speed": "Vitesse de téléchargement",
201
+ "title": "Téléchargement du modèle {{model}} en cours"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "Ajouter un plugin personnalisé",
198
206
  "clearDeprecated": "Effacer les plugins obsolètes",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "Outils supplémentaires"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "Si è verificato un errore nel servizio Moonshot, si prega di controllare le informazioni seguenti o riprovare",
54
54
  "NoOpenAIAPIKey": "La chiave API OpenAI è vuota. Aggiungi una chiave API personalizzata OpenAI",
55
55
  "OllamaBizError": "Errore di servizio Ollama, controllare le informazioni seguenti o riprovare",
56
+ "OllamaServiceUnavailable": "Servizio Ollama non disponibile: controlla se è avviato correttamente",
56
57
  "OpenAIBizError": "Errore nella richiesta del servizio OpenAI. Segui le informazioni seguenti per individuare e riprovare",
57
58
  "PerplexityBizError": "Errore di business nella richiesta del servizio Perplexity AI, controlla le informazioni seguenti o riprova",
58
59
  "PluginApiNotFound": "Spiacenti, l'API specificata non esiste nel manifesto del plugin. Verifica che il metodo di richiesta corrisponda all'API del manifesto del plugin",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "Chiudi messaggio",
116
117
  "confirm": "Conferma e riprova",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "Scarica",
121
+ "description": "Inserisci l'etichetta del tuo modello Ollama per continuare la sessione",
122
+ "title": "Scarica il modello Ollama specificato"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "L'amministratore ha abilitato l'autenticazione di accesso unificata. Fai clic sul pulsante sottostante per accedere e sbloccare l'applicazione.",
119
127
  "success": "Accesso riuscito",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "Altri modelli sono in fase di <1> pianificazione per l'integrazione </1>, resta sintonizzato ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama sta scaricando questo modello. Si prega di non chiudere questa pagina. Il download verrà ripreso dal punto in cui è stato interrotto in caso di riavvio.",
199
+ "remainingTime": "Tempo rimanente",
200
+ "speed": "Velocità di download",
201
+ "title": "Download del modello {{model}} in corso"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "Aggiungi plugin personalizzato",
198
206
  "clearDeprecated": "Rimuovi plugin non validi",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "Strumenti aggiuntivi"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "月の裏側サービスのリクエストでエラーが発生しました。以下の情報を確認して再試行してください。",
54
54
  "NoOpenAIAPIKey": "OpenAI APIキーが空です。カスタムOpenAI APIキーを追加してください。",
55
55
  "OllamaBizError": "Ollamaサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再度お試しください",
56
+ "OllamaServiceUnavailable": "Ollamaサービスが利用できません。正常に起動しているかどうかを確認してください",
56
57
  "OpenAIBizError": "OpenAIサービスのリクエストエラーが発生しました。以下の情報に基づいて問題を解決したり、再試行したりしてください",
57
58
  "PerplexityBizError": "Perplexity AIサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングするか、再度お試しください",
58
59
  "PluginApiNotFound": "申し訳ありませんが、プラグインのマニフェストに指定されたAPIが見つかりませんでした。リクエストメソッドとプラグインのマニフェストのAPIが一致しているかどうかを確認してください",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "ヒントを閉じる",
116
117
  "confirm": "確認して再試行",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "ダウンロード",
121
+ "description": "Ollamaモデルのラベルを入力して、会話を続行してください",
122
+ "title": "指定のOllamaモデルをダウンロード"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "管理者が統一ログイン認証を有効にしました。下のボタンをクリックしてログインすると、アプリがロック解除されます。",
119
127
  "success": "ログインに成功しました",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "さらに多くのモデルが <1>計画されています</1>。お楽しみに ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama はモデルをダウンロード中です。ページを閉じないようにしてください。再度ダウンロードすると、中断した箇所から再開されます。",
199
+ "remainingTime": "残り時間",
200
+ "speed": "ダウンロード速度",
201
+ "title": "モデル {{model}} をダウンロード中"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "カスタムプラグイン",
198
206
  "clearDeprecated": "無効なプラグインをクリア",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "拡張ツール"
430
438
  }
431
- }
439
+ }
@@ -53,6 +53,7 @@
53
53
  "MoonshotBizError": "요청한 문샷 비즈니스에 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
54
54
  "NoOpenAIAPIKey": "OpenAI API 키가 비어 있습니다. 사용자 정의 OpenAI API 키를 추가해주세요.",
55
55
  "OllamaBizError": "Ollama 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
56
+ "OllamaServiceUnavailable": "Ollama 서비스를 찾을 수 없습니다. 정상적으로 시작되었는지 확인하십시오.",
56
57
  "OpenAIBizError": "OpenAI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 문제를 해결하거나 다시 시도해주세요.",
57
58
  "PerplexityBizError": "Perplexity AI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오.",
58
59
  "PluginApiNotFound": "죄송합니다. 플러그인 설명서에 해당 API가 없습니다. 요청 메서드와 플러그인 설명서 API가 일치하는지 확인해주세요.",
@@ -114,6 +115,13 @@
114
115
  },
115
116
  "closeMessage": "알림 닫기",
116
117
  "confirm": "확인 및 다시 시도",
118
+ "model": {
119
+ "Ollama": {
120
+ "confirm": "다운로드",
121
+ "description": "Ollama 모델 태그를 입력하여 세션을 계속할 수 있습니다.",
122
+ "title": "지정된 Ollama 모델 다운로드"
123
+ }
124
+ },
117
125
  "oauth": {
118
126
  "description": "관리자가 통합 로그인 인증을 활성화했습니다. 아래 버튼을 클릭하여 로그인하면 앱을 잠금 해제할 수 있습니다.",
119
127
  "success": "로그인 성공",
@@ -193,6 +193,14 @@
193
193
  },
194
194
  "waitingForMore": "<1>계획에 따라 더 많은 모델이 추가될 예정</1>이니 기대해 주세요 ✨"
195
195
  },
196
+ "ollama": {
197
+ "download": {
198
+ "desc": "Ollama 모델을 다운로드 중입니다. 이 페이지를 닫지 말아주세요. 다시 다운로드하면 중단된 곳부터 계속됩니다.",
199
+ "remainingTime": "남은 시간",
200
+ "speed": "다운로드 속도",
201
+ "title": "{{model}} 모델 다운로드 중"
202
+ }
203
+ },
196
204
  "plugin": {
197
205
  "addTooltip": "플러그인 추가",
198
206
  "clearDeprecated": "사용되지 않는 플러그인 제거",
@@ -428,4 +436,4 @@
428
436
  },
429
437
  "title": "확장 도구"
430
438
  }
431
- }
439
+ }