@lobehub/chat 0.136.0 → 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 (78) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docs/self-hosting/advanced/authentication.mdx +6 -7
  5. package/docs/self-hosting/advanced/authentication.zh-CN.mdx +6 -7
  6. package/docs/self-hosting/advanced/sso-providers/auth0.mdx +13 -14
  7. package/docs/self-hosting/advanced/sso-providers/auth0.zh-CN.mdx +13 -13
  8. package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.mdx +16 -21
  9. package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.zh-CN.mdx +39 -40
  10. package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +1 -1
  11. package/docs/self-hosting/environment-variables/model-provider.mdx +0 -2
  12. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +0 -1
  13. package/docs/self-hosting/start.mdx +1 -9
  14. package/docs/usage/features/agent-market.mdx +1 -1
  15. package/docs/usage/features/tts.mdx +0 -3
  16. package/docs/usage/features/vision.mdx +0 -1
  17. package/docs/usage/providers/ollama/gemma.mdx +0 -1
  18. package/docs/usage/providers/ollama.mdx +0 -3
  19. package/docs/usage/start.mdx +1 -1
  20. package/docs/usage/start.zh-CN.mdx +1 -1
  21. package/locales/ar/error.json +8 -0
  22. package/locales/ar/setting.json +9 -1
  23. package/locales/de-DE/error.json +8 -0
  24. package/locales/de-DE/setting.json +9 -1
  25. package/locales/en-US/error.json +8 -0
  26. package/locales/en-US/setting.json +9 -1
  27. package/locales/es-ES/error.json +8 -0
  28. package/locales/es-ES/setting.json +9 -1
  29. package/locales/fr-FR/error.json +8 -0
  30. package/locales/fr-FR/setting.json +9 -1
  31. package/locales/it-IT/error.json +8 -0
  32. package/locales/it-IT/setting.json +9 -1
  33. package/locales/ja-JP/error.json +8 -0
  34. package/locales/ja-JP/setting.json +9 -1
  35. package/locales/ko-KR/error.json +8 -0
  36. package/locales/ko-KR/setting.json +9 -1
  37. package/locales/nl-NL/error.json +8 -0
  38. package/locales/nl-NL/setting.json +9 -1
  39. package/locales/pl-PL/error.json +8 -0
  40. package/locales/pl-PL/setting.json +9 -1
  41. package/locales/pt-BR/error.json +8 -0
  42. package/locales/pt-BR/setting.json +9 -1
  43. package/locales/ru-RU/error.json +8 -0
  44. package/locales/ru-RU/setting.json +9 -1
  45. package/locales/tr-TR/error.json +8 -0
  46. package/locales/tr-TR/setting.json +9 -1
  47. package/locales/vi-VN/error.json +8 -0
  48. package/locales/vi-VN/setting.json +9 -1
  49. package/locales/zh-CN/error.json +8 -0
  50. package/locales/zh-CN/setting.json +9 -1
  51. package/locales/zh-TW/error.json +8 -0
  52. package/locales/zh-TW/setting.json +9 -1
  53. package/package.json +2 -1
  54. package/src/app/api/config/route.ts +3 -2
  55. package/src/app/api/errorResponse.ts +2 -1
  56. package/src/app/settings/llm/Ollama/Checker.tsx +73 -0
  57. package/src/app/settings/llm/Ollama/index.tsx +2 -4
  58. package/src/app/settings/llm/components/Checker.tsx +23 -17
  59. package/src/components/ModelIcon/index.tsx +2 -0
  60. package/src/components/ModelTag/ModelIcon.tsx +2 -0
  61. package/src/config/modelProviders/ollama.ts +14 -0
  62. package/src/config/server/provider.ts +2 -0
  63. package/src/features/Conversation/Error/InvalidOllamaModel/index.tsx +138 -0
  64. package/src/features/Conversation/Error/InvalidOllamaModel/useDownloadMonitor.ts +48 -0
  65. package/src/features/Conversation/Error/OllamaBizError.tsx +34 -0
  66. package/src/features/Conversation/Error/index.tsx +5 -0
  67. package/src/features/Conversation/Error/style.tsx +2 -2
  68. package/src/locales/default/error.ts +8 -0
  69. package/src/locales/default/setting.ts +9 -1
  70. package/src/services/__tests__/ollama.test.ts +26 -0
  71. package/src/services/ollama.ts +64 -0
  72. package/src/store/global/slices/settings/selectors/modelProvider.ts +11 -10
  73. package/src/store/middleware/createHyperStorage/index.ts +1 -2
  74. package/src/store/middleware/createHyperStorage/indexedDB.ts +1 -1
  75. package/src/store/middleware/createHyperStorage/localStorage.ts +1 -1
  76. package/src/store/middleware/createHyperStorage/urlStorage.ts +1 -1
  77. package/src/types/fetch.ts +1 -0
  78. package/tsconfig.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 0.137.0](https://github.com/lobehub/lobe-chat/compare/v0.136.0...v0.137.0)
6
+
7
+ <sup>Released on **2024-03-15**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **ollama**: Improve connection check method and provide selector for user to control model options.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **ollama**: Improve connection check method and provide selector for user to control model options, closes [#1397](https://github.com/lobehub/lobe-chat/issues/1397) ([675902f](https://github.com/lobehub/lobe-chat/commit/675902f))
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
+
5
30
  ## [Version 0.136.0](https://github.com/lobehub/lobe-chat/compare/v0.135.4...v0.136.0)
6
31
 
7
32
  <sup>Released on **2024-03-15**</sup>
package/README.md CHANGED
@@ -255,14 +255,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
255
255
 
256
256
  <!-- AGENT LIST -->
257
257
 
258
- | Recent Submits | Description |
259
- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
260
- | [TikTok Script Writer](https://chat-preview.lobehub.com/market?agent=tiktok-script-writer)<br/><sup>By **[sdhjn19dj1m](https://github.com/sdhjn19dj1m)** on **2024-03-12**</sup> | This script is tailored for TikTok's short video format, designed to engage and entertain the specified target audience. It incorporates trending elements and best practices for content virality, ensuring the video captures attention from the start. The script is structured to include a captivating opening, concise and impactful message body, and a compelling call-to-action, all while reflecting the user's desired tone and theme.<br/>`tik-tok` `short-video` `viral-content` `trending-hashtag` `engagement` |
261
- | [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)<br/><sup>By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09**</sup> | Specializes in engaging Gen Z users with tailored interactions reflecting their preferences and values.<br/>`engagement` `gen-z` `communication` `advice` `interaction` |
262
- | [Schedule Management Assistant](https://chat-preview.lobehub.com/market?agent=calendar-manager)<br/><sup>By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07**</sup> | Schedule Management Assistant, calls the time plugin to handle requests for adding, querying, and deleting schedules, supports multiple operations and reminders.<br/>`schedule-management` `time-plugin` `add-schedule` `query-schedule` `delete-schedule` |
263
- | [Business Email Writing Expert](https://chat-preview.lobehub.com/market?agent=business-email)<br/><sup>By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06**</sup> | Business email writing expert specializing in bilingual business emails in Chinese and English, cross-cultural communication, and engagement in the GitHub open-source community.<br/>`business-email-writing` `business-cooperation` `business-authorization` `cross-cultural-communication` `git-hub-and-open-source-community` |
264
-
265
- > 📊 Total agents: [<kbd>**201**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
258
+ | Recent Submits | Description |
259
+ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
260
+ | [Amazon Seller Support Agent](https://chat-preview.lobehub.com/market?agent=amazon-seller-support-agent)<br/><sup>By **[etnperlong](https://github.com/etnperlong)** on **2024-03-15**</sup> | AI assistant that assists Amazon sellers in responding to customer service replies, providing detailed and cogent responses towards a satisfactory resolution.<br/>`amazon` `seller` `writing` |
261
+ | [TikTok Script Writer](https://chat-preview.lobehub.com/market?agent=tiktok-script-writer)<br/><sup>By **[sdhjn19dj1m](https://github.com/sdhjn19dj1m)** on **2024-03-12**</sup> | This script is tailored for TikTok's short video format, designed to engage and entertain the specified target audience. It incorporates trending elements and best practices for content virality, ensuring the video captures attention from the start. The script is structured to include a captivating opening, concise and impactful message body, and a compelling call-to-action, all while reflecting the user's desired tone and theme.<br/>`tik-tok` `short-video` `viral-content` `trending-hashtag` `engagement` |
262
+ | [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)<br/><sup>By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09**</sup> | Specializes in engaging Gen Z users with tailored interactions reflecting their preferences and values.<br/>`engagement` `gen-z` `communication` `advice` `interaction` |
263
+ | [Schedule Management Assistant](https://chat-preview.lobehub.com/market?agent=calendar-manager)<br/><sup>By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07**</sup> | Schedule Management Assistant, calls the time plugin to handle requests for adding, querying, and deleting schedules, supports multiple operations and reminders.<br/>`schedule-management` `time-plugin` `add-schedule` `query-schedule` `delete-schedule` |
264
+
265
+ > 📊 Total agents: [<kbd>**202**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
266
266
 
267
267
  <!-- AGENT LIST -->
268
268
 
package/README.zh-CN.md CHANGED
@@ -243,14 +243,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
243
243
 
244
244
  <!-- AGENT LIST -->
245
245
 
246
- | 最近新增 | 助手说明 |
247
- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
248
- | [TikTok 脚本撰写器](https://chat-preview.lobehub.com/market?agent=tiktok-script-writer)<br/><sup>By **[sdhjn19dj1m](https://github.com/sdhjn19dj1m)** on **2024-03-12**</sup> | 此脚本专为 TikTok 的短视频格式量身定制,旨在吸引和娱乐特定目标受众。它融入了流行元素和内容病毒传播的最佳实践,确保视频从一开始就吸引注意力。脚本结构包括引人入胜的开场、简洁而有影响力的主体信息和引人注目的行动号召,同时反映用户期望的语气和主题。<br/>`tik-tok` `short-video` `viral-content` `trending-hashtag` `engagement` |
249
- | [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)<br/><sup>By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09**</sup> | 专注于通过定制互动反映他们的偏好和价值观,与 Gen Z 用户进行互动。<br/>`engagement` `gen-z` `communication` `advice` `interaction` |
250
- | [日程管理助手](https://chat-preview.lobehub.com/market?agent=calendar-manager)<br/><sup>By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07**</sup> | 日程管理助手,调用时间插件,处理新增、查询、删除日程请求,支持多种操作和提醒。<br/>`日程管理` `时间插件` `新增日程` `查询日程` `删除日程` |
251
- | [商务邮件撰写专家](https://chat-preview.lobehub.com/market?agent=business-email)<br/><sup>By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-06**</sup> | 商务邮件撰写专家,擅长中英文商务邮件,跨文化沟通,GitHub 开源社区交流。<br/>`商务邮件撰写` `商业合作` `商务授权` `跨文化沟通` `git-hub和开源社区` |
252
-
253
- > 📊 Total agents: [<kbd>**201**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
246
+ | 最近新增 | 助手说明 |
247
+ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
248
+ | [亚马逊卖家支持代理](https://chat-preview.lobehub.com/market?agent=amazon-seller-support-agent)<br/><sup>By **[etnperlong](https://github.com/etnperlong)** on **2024-03-15**</sup> | AI 助手,协助亚马逊卖家回复客户服务回复,提供详细和有力的回复,以达到令人满意的解决方案。<br/>`亚马逊` `卖家` `写作` |
249
+ | [TikTok 脚本撰写器](https://chat-preview.lobehub.com/market?agent=tiktok-script-writer)<br/><sup>By **[sdhjn19dj1m](https://github.com/sdhjn19dj1m)** on **2024-03-12**</sup> | 此脚本专为 TikTok 的短视频格式量身定制,旨在吸引和娱乐特定目标受众。它融入了流行元素和内容病毒传播的最佳实践,确保视频从一开始就吸引注意力。脚本结构包括引人入胜的开场、简洁而有影响力的主体信息和引人注目的行动号召,同时反映用户期望的语气和主题。<br/>`tik-tok` `short-video` `viral-content` `trending-hashtag` `engagement` |
250
+ | [Gen Z Engagement Specialist](https://chat-preview.lobehub.com/market?agent=gen-z)<br/><sup>By **[MYSeaIT](https://github.com/MYSeaIT)** on **2024-03-09**</sup> | 专注于通过定制互动反映他们的偏好和价值观,与 Gen Z 用户进行互动。<br/>`engagement` `gen-z` `communication` `advice` `interaction` |
251
+ | [日程管理助手](https://chat-preview.lobehub.com/market?agent=calendar-manager)<br/><sup>By **[ccdanpian](https://github.com/ccdanpian)** on **2024-03-07**</sup> | 日程管理助手,调用时间插件,处理新增、查询、删除日程请求,支持多种操作和提醒。<br/>`日程管理` `时间插件` `新增日程` `查询日程` `删除日程` |
252
+
253
+ > 📊 Total agents: [<kbd>**202**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
254
254
 
255
255
  <!-- AGENT LIST -->
256
256
 
@@ -4,8 +4,8 @@ LobeChat supports the configuration of external identity verification services f
4
4
 
5
5
  Currently supported identity verification services include:
6
6
 
7
- - [Auth0](/en/self-hosting/sso-providers/auth0)
8
- - [Microsoft Entra ID](/en/self-hosting/sso-providers/microsoft-entra-id)
7
+ - [Auth0](/en/self-hosting/advanced/sso-providers/auth0)
8
+ - [Microsoft Entra ID](/en/self-hosting/advanced/sso-providers/microsoft-entra-id)
9
9
 
10
10
  Click on the links to view the corresponding platform's configuration documentation.
11
11
 
@@ -15,14 +15,13 @@ To simultaneously enable multiple identity verification sources, please set the
15
15
 
16
16
  The order corresponds to the display order of the SSO providers.
17
17
 
18
- | SSO Provider | Value |
19
- | --- | --- |
20
- | Auth0 | auth0 |
18
+ | SSO Provider | Value |
19
+ | ------------------ | -------- |
20
+ | Auth0 | auth0 |
21
21
  | Microsoft Entra ID | azure-ad |
22
22
 
23
23
  ## Other SSO Providers
24
24
 
25
25
  Please refer to the [NextAuth.js][next-auth-js] documentation and feel free to submit a Pull Request.
26
26
 
27
-
28
- [next-auth-js]: https://next-auth.js.org/providers
27
+ [next-auth-js]: https://next-auth.js.org/providers
@@ -4,8 +4,8 @@ LobeChat 支持配置外部身份验证服务,供企业 / 组织内部使用
4
4
 
5
5
  目前支持的身份验证服务有:
6
6
 
7
- - [Auth0](/zh/self-hosting/sso-providers/auth0)
8
- - [Microsoft Entra ID](/zh/self-hosting/sso-providers/microsoft-entra-id)
7
+ - [Auth0](/zh/self-hosting/advanced/sso-providers/auth0)
8
+ - [Microsoft Entra ID](/zh/self-hosting/advanced/sso-providers/microsoft-entra-id)
9
9
 
10
10
  点击链接可以查看对应平台的配置文档。
11
11
 
@@ -15,14 +15,13 @@ LobeChat 支持配置外部身份验证服务,供企业 / 组织内部使用
15
15
 
16
16
  顺序为 SSO 提供商的显示顺序。
17
17
 
18
- | SSO 提供商 | 值 |
19
- | --- | --- |
20
- | Auth0 | auth0 |
18
+ | SSO 提供商 | 值 |
19
+ | ------------------ | -------- |
20
+ | Auth0 | auth0 |
21
21
  | Microsoft Entra ID | azure-ad |
22
22
 
23
23
  ## 其他 SSO 提供商
24
24
 
25
25
  请参考 [NextAuth.js][next-auth-js] 文档,欢迎提交 Pull Request。
26
26
 
27
-
28
- [next-auth-js]: https://next-auth.js.org/providers
27
+ [next-auth-js]: https://next-auth.js.org/providers
@@ -40,19 +40,18 @@ import { Callout, Steps } from 'nextra/components';
40
40
 
41
41
  When deploying LobeChat, you need to configure the following environment variables:
42
42
 
43
- | Environment Variable | Type | Description |
44
- | --------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
45
- | `ENABLE_OAUTH_SSO` | Required | Enable single sign-on (SSO) for LobeChat. Set to `1` to enable single sign-on. |
46
- | `NEXTAUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate a key using the following command: `openssl rand -base64 32` |
47
- | `SSO_PROVIDERS` | Optional | Select the single sign-on provider for LoboChat. Use `auth0` for Auth0. |
48
- | `AUTH0_CLIENT_ID` | Required | Client ID of the Auth0 application |
49
- | `AUTH0_CLIENT_SECRET` | Required | Client Secret of the Auth0 application |
50
- | `AUTH0_ISSUER` | Required | Domain of the Auth0 application, `https://example.auth0.com` |
51
- | `ACCESS_CODE` | Required | Add a password to access this service. You can set a sufficiently long random password to "disable" access code authorization. |
52
- | `NEXTAUTH_URL` | Optional | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
53
-
54
-
55
- You can refer to the related variable details at [Environment Variables](/en/self-hosting/environment-variable#auth0).
43
+ | Environment Variable | Type | Description |
44
+ | --------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
45
+ | `ENABLE_OAUTH_SSO` | Required | Enable single sign-on (SSO) for LobeChat. Set to `1` to enable single sign-on. |
46
+ | `NEXTAUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate a key using the following command: `openssl rand -base64 32` |
47
+ | `SSO_PROVIDERS` | Optional | Select the single sign-on provider for LoboChat. Use `auth0` for Auth0. |
48
+ | `AUTH0_CLIENT_ID` | Required | Client ID of the Auth0 application |
49
+ | `AUTH0_CLIENT_SECRET` | Required | Client Secret of the Auth0 application |
50
+ | `AUTH0_ISSUER` | Required | Domain of the Auth0 application, `https://example.auth0.com` |
51
+ | `ACCESS_CODE` | Required | Add a password to access this service. You can set a sufficiently long random password to "disable" access code authorization. |
52
+ | `NEXTAUTH_URL` | Optional | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
53
+
54
+ <Callout type={'info'}>You can refer to the related variable details at [📘Environment Variables](/en/self-hosting/environment-variable#auth0).</Callout>
56
55
  </Steps>
57
56
 
58
57
  <Callout>
@@ -89,4 +88,4 @@ If your enterprise or organization needs to support external user logins, you ca
89
88
 
90
89
  [auth0-client-page]: https://manage.auth0.com/dashboard
91
90
  [auth0-login-actions-manual]: https://auth0.com/blog/permit-or-deny-login-requests-using-auth0-actions/
92
- [auth0-sso-integrations]: https://marketplace.auth0.com/features/sso-integrations
91
+ [auth0-sso-integrations]: https://marketplace.auth0.com/features/sso-integrations
@@ -39,21 +39,21 @@ import { Callout, Steps } from 'nextra/components';
39
39
 
40
40
  在部署 LobeChat 时,你需要配置以下环境变量:
41
41
 
42
- | 环境变量 | 类型 | 描述 |
43
- | ------------------------ | ------------ | ----------------------------------------------------------------------------------------- |
44
- | `ENABLE_OAUTH_SSO` | 必选 | 为 LobeChat 启用单点登录 (SSO)。设置为 `1` 以启用单点登录。 |
45
- | `NEXTAUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
46
- | `SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Auth0 请填写 `auth0`。 |
47
- | `AUTH0_CLIENT_ID` | 必选 | Auth0 应用程序的 Client ID |
48
- | `AUTH0_CLIENT_SECRET` | 必选 | Auth0 应用程序的 Client Secret |
49
- | `AUTH0_ISSUER` | 必选 | Auth0 应用程序的 Domain,`https://example.auth0.com` |
50
- | `ACCESS_CODE` | 必选 | 添加访问此服务的密码,你可以设置一个足够长的随机密码以 “禁用” 访问码授权 |
51
- | `NEXTAUTH_URL` | 可选 | 该URL用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
52
-
53
- 前往 [环境变量](/zh/self-hosting/environment-variable#auth0) 可查阅相关变量详情。
42
+ | 环境变量 | 类型 | 描述 |
43
+ | --------------------- | -- | ------------------------------------------------------------------------------------------- |
44
+ | `ENABLE_OAUTH_SSO` | 必选 | 为 LobeChat 启用单点登录 (SSO)。设置为 `1` 以启用单点登录。 |
45
+ | `NEXTAUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
46
+ | `SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Auth0 请填写 `auth0`。 |
47
+ | `AUTH0_CLIENT_ID` | 必选 | Auth0 应用程序的 Client ID |
48
+ | `AUTH0_CLIENT_SECRET` | 必选 | Auth0 应用程序的 Client Secret |
49
+ | `AUTH0_ISSUER` | 必选 | Auth0 应用程序的 Domain,`https://example.auth0.com` |
50
+ | `ACCESS_CODE` | 必选 | 添加访问此服务的密码,你可以设置一个足够长的随机密码以 “禁用” 访问码授权 |
51
+ | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
52
+
53
+ <Callout type={'info'}> 前往 [📘 环境变量](/zh/self-hosting/environment-variable#auth0) 可查阅相关变量详情。</Callout>
54
54
  </Steps>
55
55
 
56
- <Callout>部署成功后,用户将可以使用 Auth0 中配置的用户通过身份认证并使用 LobeChat。</Callout>
56
+ <Callout type={'info'}>部署成功后,用户将可以使用 Auth0 中配置的用户通过身份认证并使用 LobeChat。</Callout>
57
57
 
58
58
  ## 进阶配置
59
59
 
@@ -1,5 +1,3 @@
1
- import { Callout, Steps } from 'nextra/components';
2
-
3
1
  # Configuration of Microsoft Entra ID Authentication Service
4
2
 
5
3
  <Steps>
@@ -21,7 +19,7 @@ import { Callout, Steps } from 'nextra/components';
21
19
  </Callout>
22
20
 
23
21
  ![App Register](https://github.com/lobehub/lobe-chat/assets/13883964/4f9d83bd-b3fc-4abc-bcf4-ccbad65c219d)
24
-
22
+
25
23
  Click on "Register".
26
24
 
27
25
  After successfully creating the application, click on the corresponding application to enter the application details page, and switch to the "Overview" tab to view the corresponding configuration information.
@@ -32,10 +30,7 @@ import { Callout, Steps } from 'nextra/components';
32
30
 
33
31
  ![Create App Client Secret](https://github.com/lobehub/lobe-chat/assets/13883964/c9d66fa0-158c-4bd3-a1fa-969e638259d2)
34
32
 
35
- <Callout type={'info'}>
36
- - Please make sure to save your client secret as this is your only chance to view it.
37
- </Callout>
38
-
33
+ <Callout type={'info'}>Please make sure to save your client secret as this is your only chance to view it.</Callout>
39
34
 
40
35
  ### Add Users
41
36
 
@@ -45,17 +40,18 @@ import { Callout, Steps } from 'nextra/components';
45
40
 
46
41
  When deploying LobeChat, you need to configure the following environment variables:
47
42
 
48
- | Environment Variable | Type | Description |
49
- | ------------------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
50
- | `ENABLE_OAUTH_SSO` | Required | Enable single sign-on (SSO) for LobeChat. Set to `1` to enable single sign-on. |
51
- | `NEXTAUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate the key using the following command: `openssl rand -base64 32` |
52
- | `SSO_PROVIDERS` | Required | Select the single sign-on provider for LoboChat. Use `azure-ad` for Microsoft Entra ID. | |
53
- | `AZURE_AD_CLIENT_ID` | Required | Client ID of the Microsoft Entra ID application. |
54
- | `AZURE_AD_CLIENT_SECRET` | Required | Client Secret of the Microsoft Entra ID application. |
55
- | `AZURE_AD_TENANT_ID` | Required | Tenant ID of the Microsoft Entra ID application. |
56
- | `ACCESS_CODE` | Required | Add a password for accessing this service, you can set a sufficiently long random password to "disable" access code authorization. |
57
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It is only necessary to set it when the default generated redirect address is incorrect. `https://example.com/api/auth` |
58
- You can refer to [environment variables](/en/self-hosting/environment-variable#microsoft-entra-id) for details on related variables.
43
+ | Environment Variable | Type | Description |
44
+ | ------------------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
45
+ | `ENABLE_OAUTH_SSO` | Required | Enable single sign-on (SSO) for LobeChat. Set to `1` to enable single sign-on. |
46
+ | `NEXTAUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate the key using the following command: `openssl rand -base64 32` |
47
+ | `SSO_PROVIDERS` | Required | Select the single sign-on provider for LoboChat. Use `azure-ad` for Microsoft Entra ID. |
48
+ | `AZURE_AD_CLIENT_ID` | Required | Client ID of the Microsoft Entra ID application. |
49
+ | `AZURE_AD_CLIENT_SECRET` | Required | Client Secret of the Microsoft Entra ID application. |
50
+ | `AZURE_AD_TENANT_ID` | Required | Tenant ID of the Microsoft Entra ID application. |
51
+ | `ACCESS_CODE` | Required | Add a password for accessing this service, you can set a sufficiently long random password to "disable" access code authorization. |
52
+ | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It is only necessary to set it when the default generated redirect address is incorrect. `https://example.com/api/auth` |
53
+
54
+ <Callout type={'info'}>You can refer to [📘 environment variables](/en/self-hosting/environment-variable#microsoft-entra-id) for details on related variables.</Callout>
59
55
  </Steps>
60
56
 
61
57
  <Callout>After successful deployment, users will be able to authenticate and use LobeChat using the users configured in Microsoft Entra ID.</Callout>
@@ -68,7 +64,6 @@ Please explore further in the [Microsoft Entra ID Learning Center][microsoft-lea
68
64
 
69
65
  - [Quickstart: Register an app][microsoft-entra-register-app]
70
66
 
71
- [microsoft-learn-entra]: https://learn.microsoft.com/en-us/entra/identity/
72
- [microsoft-entra-register-app]: https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
73
67
  [microsoft-azure-portal]: https://portal.azure.com/
74
- [microsoft-entra-id]: https://www.microsoft.com/en-us/security/business/identity-access/microsoft-entra-id
68
+ [microsoft-entra-register-app]: https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
69
+ [microsoft-learn-entra]: https://learn.microsoft.com/en-us/entra/identity/
@@ -2,75 +2,74 @@ import { Callout, Steps } from 'nextra/components';
2
2
 
3
3
  # 配置 Microsoft Entra ID 身份验证服务
4
4
 
5
+ ## Microsoft Entra ID 配置流程
6
+
5
7
  <Steps>
6
8
  ### 创建 Microsoft Entra ID 应用
7
9
 
8
- 在你的 [Microsoft Azure Portal][microsoft-azure-portal] 进入 Microsoft Entra ID -> App registrations -> New registration 创建一个新的应用。
10
+ 在你的 [Microsoft Azure Portal][microsoft-azure-portal] 进入 Microsoft Entra ID -> App registrations -> New registration 创建一个新的应用。
9
11
 
10
- 填写你想向组织用户显示的应用名称,选择你期望支持的账户类型,如果只支持内部用户请选择 `Accounts in this organizational directory only (Default Directory only - Single tenant)`。
12
+ 填写你想向组织用户显示的应用名称,选择你期望支持的账户类型,如果只支持内部用户请选择 `Accounts in this organizational directory only (Default Directory only - Single tenant)`。
11
13
 
12
- 在 `Redirect URI (optional)` 中,应用类型选择 `Web`,Callback URL, 处填写:
14
+ 在 `Redirect URI (optional)` 中,应用类型选择 `Web`,Callback URL, 处填写:
13
15
 
14
- ```bash
15
- https://<your-domain>/api/auth/callback/azure-ad
16
- ```
16
+ ```bash
17
+ https://your-domain/api/auth/callback/azure-ad
18
+ ```
17
19
 
18
- <Callout type={'info'}>
19
- - 可以在 Register 后再填写或修改 Redirect URIs,但是务必保证填写的 URL 与部署的 URL 一致。
20
- - your-domain 请填写自己的域名
21
- </Callout>
20
+ <Callout type={'info'}>
21
+ - 可以在 Register 后再填写或修改 Redirect URIs,但是务必保证填写的 URL 与部署的 URL 一致。
22
+ - your-domain 请填写自己的域名
23
+ </Callout>
22
24
 
23
- ![App Register](https://github.com/lobehub/lobe-chat/assets/13883964/4f9d83bd-b3fc-4abc-bcf4-ccbad65c219d)
24
-
25
- 点击「Register」
25
+ ![App Register](https://github.com/lobehub/lobe-chat/assets/13883964/4f9d83bd-b3fc-4abc-bcf4-ccbad65c219d)
26
26
 
27
- 创建成功后,点击相应的应用,进入应用详情页,切换到「Overview」标签页,就可以看到相应的配置信息。
27
+ 点击「Register」
28
28
 
29
- ![App Overview](https://github.com/lobehub/lobe-chat/assets/13883964/48a0b702-05bd-4ce4-a007-a8ad00a36e5a)
29
+ 创建成功后,点击相应的应用,进入应用详情页,切换到「Overview」标签页,就可以看到相应的配置信息。
30
30
 
31
- 进入「Certificates & secrets」,选择「Client secrets」标签,点击「New client secret」,填写描述,选择过期时间,点击「Add」,创建一个新的客户端密钥。
31
+ ![App Overview](https://github.com/lobehub/lobe-chat/assets/13883964/48a0b702-05bd-4ce4-a007-a8ad00a36e5a)
32
32
 
33
- ![Create App Client Secret](https://github.com/lobehub/lobe-chat/assets/13883964/c9d66fa0-158c-4bd3-a1fa-969e638259d2)
33
+ 进入「Certificates & secrets」,选择「Client secrets」标签,点击「New client secret」,填写描述,选择过期时间,点击「Add」,创建一个新的客户端密钥。
34
34
 
35
- <Callout type={'info'}>
36
- - 请务必保存好你的客户端密钥,因为这是你唯一的机会查看它。
37
- </Callout>
35
+ ![Create App Client Secret](https://github.com/lobehub/lobe-chat/assets/13883964/c9d66fa0-158c-4bd3-a1fa-969e638259d2)
38
36
 
37
+ =<Callout type={'info'}>请务必保存好你的客户端密钥,因为这是你唯一的机会查看它。</Callout>
39
38
 
40
- ### 新增用户
39
+ ### 新增用户
41
40
 
42
- 回到「Microsoft Entra ID」界面,进入「Users」,点击「New user」,填写用户信息,点击「Create」,创建用户以使用 LobeChat。
41
+ 回到「Microsoft Entra ID」界面,进入「Users」,点击「New user」,填写用户信息,点击「Create」,创建用户以使用 LobeChat。
43
42
 
44
- ### 配置环境变量
43
+ ### 配置环境变量
45
44
 
46
- 在部署 LobeChat 时,你需要配置以下环境变量:
45
+ 在部署 LobeChat 时,你需要配置以下环境变量:
47
46
 
48
- | 环境变量 | 类型 | 描述 |
49
- | ------------------------ | ------------ | ----------------------------------------------------------------------------------------- |
50
- | `ENABLE_OAUTH_SSO` | 必选 | 为 LobeChat 启用单点登录 (SSO)。设置为 `1` 以启用单点登录。 |
51
- | `NEXTAUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
52
- | `SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Microsoft Entra ID 请填写 `azure-ad`。 |
53
- | `AZURE_AD_CLIENT_ID` | 必选 | Microsoft Entra ID 应用程序的 Client ID |
54
- | `AZURE_AD_CLIENT_SECRET` | 必选 | Microsoft Entra ID 应用程序的 Client Secret |
55
- | `AZURE_AD_TENANT_ID` | 必选 | Microsoft Entra ID 应用程序的 Tenant ID |
56
- | `ACCESS_CODE` | 必选 | 添加访问此服务的密码,你可以设置一个足够长的随机密码以 “禁用” 访问码授权 |
57
- | `NEXTAUTH_URL` | 可选 | 该URL用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
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` |
58
57
 
59
- 前往 [环境变量](/zh/self-hosting/environment-variable#microsoft-entra-id) 可查阅相关变量详情。
58
+ <Callout type={'info'}> 前往 [📘 环境变量](/zh/self-hosting/environment-variable#microsoft-entra-id) 可查阅相关变量详情。</Callout>
60
59
  </Steps>
61
60
 
62
- <Callout>部署成功后,用户将可以使用 Microsoft Entra ID 中配置的用户通过身份认证并使用 LobeChat。</Callout>
61
+ <Callout type={'info'}>
62
+ 部署成功后,用户将可以使用 Microsoft Entra ID 中配置的用户通过身份认证并使用 LobeChat。
63
+ </Callout>
63
64
 
64
65
  ## 进阶配置
65
66
 
66
67
  请在 [Microsoft Entra ID 学习中心][microsoft-learn-entra],做进一步探索。
67
68
 
68
-
69
69
  ## 相关资料
70
70
 
71
71
  - [快速注册应用指导][microsoft-entra-register-app]
72
72
 
73
- [microsoft-learn-entra]: https://learn.microsoft.com/en-us/entra/identity/
74
- [microsoft-entra-register-app]: https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
75
73
  [microsoft-azure-portal]: https://portal.azure.com/
76
- [microsoft-entra-id]: https://www.microsoft.com/en-us/security/business/identity-access/microsoft-entra-id
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/
@@ -67,7 +67,7 @@ LobeChat 在部署时提供了一些额外的配置项,你可以使用环境
67
67
  #### `SSO_PROVIDERS`
68
68
 
69
69
  - Type: 必需
70
- - 描述: 选择LoboChat的单点登录提供商。如果有多个单点登录提供商,请用逗号分隔,例如 `auth0,azure-ad`
70
+ - 描述:选择 LoboChat 的单点登录提供商。如果有多个单点登录提供商,请用逗号分隔,例如 `auth0,azure-ad`
71
71
  - 默认值: `auth0`
72
72
  - 示例: `auth0,azure-ad`
73
73
 
@@ -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
+ }