@lobehub/chat 0.141.2 → 0.142.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 (97) hide show
  1. package/.env.example +6 -0
  2. package/CHANGELOG.md +42 -0
  3. package/Dockerfile +3 -0
  4. package/README.md +14 -14
  5. package/README.zh-CN.md +16 -15
  6. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +10 -0
  7. package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
  8. package/docs/usage/providers/ollama/qwen.mdx +47 -0
  9. package/docs/usage/providers/ollama/qwen.zh-CN.mdx +45 -0
  10. package/locales/ar/common.json +1 -0
  11. package/locales/ar/error.json +7 -1
  12. package/locales/ar/setting.json +8 -0
  13. package/locales/de-DE/common.json +1 -0
  14. package/locales/de-DE/error.json +7 -1
  15. package/locales/de-DE/setting.json +8 -0
  16. package/locales/en-US/common.json +1 -0
  17. package/locales/en-US/error.json +7 -1
  18. package/locales/en-US/setting.json +8 -0
  19. package/locales/es-ES/common.json +1 -0
  20. package/locales/es-ES/error.json +7 -1
  21. package/locales/es-ES/setting.json +8 -0
  22. package/locales/fr-FR/common.json +1 -0
  23. package/locales/fr-FR/error.json +7 -1
  24. package/locales/fr-FR/setting.json +8 -0
  25. package/locales/it-IT/common.json +1 -0
  26. package/locales/it-IT/error.json +7 -1
  27. package/locales/it-IT/setting.json +30 -24
  28. package/locales/ja-JP/common.json +1 -0
  29. package/locales/ja-JP/error.json +7 -1
  30. package/locales/ja-JP/setting.json +30 -24
  31. package/locales/ko-KR/common.json +1 -0
  32. package/locales/ko-KR/error.json +7 -1
  33. package/locales/ko-KR/setting.json +8 -0
  34. package/locales/nl-NL/common.json +1 -0
  35. package/locales/nl-NL/error.json +7 -1
  36. package/locales/nl-NL/setting.json +30 -24
  37. package/locales/pl-PL/common.json +1 -0
  38. package/locales/pl-PL/error.json +7 -1
  39. package/locales/pl-PL/setting.json +8 -0
  40. package/locales/pt-BR/common.json +1 -0
  41. package/locales/pt-BR/error.json +7 -1
  42. package/locales/pt-BR/setting.json +8 -0
  43. package/locales/ru-RU/common.json +1 -0
  44. package/locales/ru-RU/error.json +7 -1
  45. package/locales/ru-RU/setting.json +8 -0
  46. package/locales/tr-TR/common.json +1 -0
  47. package/locales/tr-TR/error.json +7 -1
  48. package/locales/tr-TR/setting.json +8 -0
  49. package/locales/vi-VN/common.json +1 -0
  50. package/locales/vi-VN/error.json +7 -1
  51. package/locales/vi-VN/setting.json +8 -0
  52. package/locales/zh-CN/common.json +1 -0
  53. package/locales/zh-CN/error.json +7 -1
  54. package/locales/zh-CN/setting.json +8 -0
  55. package/locales/zh-TW/common.json +1 -0
  56. package/locales/zh-TW/error.json +7 -1
  57. package/locales/zh-TW/setting.json +8 -0
  58. package/package.json +1 -1
  59. package/src/app/api/chat/[provider]/agentRuntime.ts +15 -2
  60. package/src/app/api/config/route.ts +2 -0
  61. package/src/app/api/errorResponse.ts +3 -0
  62. package/src/app/layout.tsx +13 -25
  63. package/src/app/settings/common/Theme.tsx +1 -1
  64. package/src/app/settings/llm/Google/index.tsx +10 -3
  65. package/src/app/settings/llm/ZeroOne/index.tsx +52 -0
  66. package/src/app/settings/llm/index.tsx +2 -0
  67. package/src/components/ModelIcon/index.tsx +2 -0
  68. package/src/components/ModelProviderIcon/index.tsx +5 -0
  69. package/src/components/ModelTag/ModelIcon.tsx +2 -0
  70. package/src/config/modelProviders/index.ts +3 -0
  71. package/src/config/modelProviders/zeroone.ts +28 -0
  72. package/src/config/server/provider.ts +10 -2
  73. package/src/const/settings.ts +4 -0
  74. package/src/features/Conversation/Error/APIKeyForm/ZeroOne.tsx +60 -0
  75. package/src/features/Conversation/Error/APIKeyForm/index.tsx +6 -1
  76. package/src/features/Conversation/Error/index.tsx +1 -0
  77. package/src/features/DebugUI/index.tsx +2 -0
  78. package/src/layout/{GlobalLayout → GlobalProvider}/AppTheme.tsx +28 -3
  79. package/src/layout/{GlobalLayout → GlobalProvider}/Locale.tsx +16 -26
  80. package/src/layout/{GlobalLayout → GlobalProvider}/StoreHydration.tsx +2 -0
  81. package/src/layout/GlobalProvider/index.tsx +62 -0
  82. package/src/libs/agent-runtime/error.ts +4 -1
  83. package/src/libs/agent-runtime/index.ts +1 -0
  84. package/src/libs/agent-runtime/types/type.ts +1 -0
  85. package/src/libs/agent-runtime/zeroone/index.ts +78 -0
  86. package/src/locales/default/common.ts +1 -0
  87. package/src/locales/default/error.ts +8 -1
  88. package/src/locales/default/setting.ts +8 -0
  89. package/src/services/_auth.ts +5 -1
  90. package/src/store/global/slices/common/action.test.ts +2 -2
  91. package/src/store/global/slices/common/action.ts +1 -1
  92. package/src/store/global/slices/settings/selectors/modelProvider.ts +11 -2
  93. package/src/types/settings/modelProvider.ts +7 -0
  94. package/src/utils/locale.ts +16 -0
  95. package/src/layout/GlobalLayout/index.tsx +0 -75
  96. /package/src/{app → layout/GlobalProvider}/StyleRegistry.tsx +0 -0
  97. /package/src/utils/{switchLang.ts → client/switchLang.ts} +0 -0
package/.env.example CHANGED
@@ -99,6 +99,12 @@ OPENAI_API_KEY=sk-xxxxxxxxx
99
99
 
100
100
  #OPENROUTER_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
101
101
 
102
+ ########################################
103
+ ######### 01.AI Service ##########
104
+ ########################################
105
+
106
+ #ZEROONEAI_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
107
+
102
108
  ########################################
103
109
  ############ Market Service ############
104
110
  ########################################
package/CHANGELOG.md CHANGED
@@ -2,6 +2,48 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.142.1](https://github.com/lobehub/lobe-chat/compare/v0.142.0...v0.142.1)
6
+
7
+ <sup>Released on **2024-03-25**</sup>
8
+
9
+ <br/>
10
+
11
+ <details>
12
+ <summary><kbd>Improvements and Fixes</kbd></summary>
13
+
14
+ </details>
15
+
16
+ <div align="right">
17
+
18
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
19
+
20
+ </div>
21
+
22
+ ## [Version 0.142.0](https://github.com/lobehub/lobe-chat/compare/v0.141.2...v0.142.0)
23
+
24
+ <sup>Released on **2024-03-25**</sup>
25
+
26
+ #### ✨ Features
27
+
28
+ - **misc**: Support 01.AI as a new provider.
29
+
30
+ <br/>
31
+
32
+ <details>
33
+ <summary><kbd>Improvements and Fixes</kbd></summary>
34
+
35
+ #### What's improved
36
+
37
+ - **misc**: Support 01.AI as a new provider, closes [#1627](https://github.com/lobehub/lobe-chat/issues/1627) ([08342fd](https://github.com/lobehub/lobe-chat/commit/08342fd))
38
+
39
+ </details>
40
+
41
+ <div align="right">
42
+
43
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
44
+
45
+ </div>
46
+
5
47
  ### [Version 0.141.2](https://github.com/lobehub/lobe-chat/compare/v0.141.1...v0.141.2)
6
48
 
7
49
  <sup>Released on **2024-03-22**</sup>
package/Dockerfile CHANGED
@@ -95,4 +95,7 @@ ENV MISTRAL_API_KEY ""
95
95
  # OpenRouter
96
96
  ENV OPENROUTER_API_KEY ""
97
97
 
98
+ # 01.AI
99
+ ENV ZEROONE_API_KEY ""
100
+
98
101
  CMD ["node", "server.js"]
package/README.md CHANGED
@@ -220,14 +220,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
220
220
 
221
221
  <!-- PLUGIN LIST -->
222
222
 
223
- | Recent Submits | Description |
224
- | ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
225
- | [Calendar Assistant](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | A plugin to manage your calendar events # will auto generate i18n in workflow<br/>`calendar` `schedule` `will-auto-generate-i-18-n-in-workflow` |
226
- | [Charts & Diagrams](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **pyxl** on **2024-02-05**</sup> | Mermaid Diagrams, Schemes for Presentations, Analysis, research websites, pie charts.<br/>`chart` `diagram` |
227
- | [Social Search](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-02-02**</sup> | The Social Search provides access to tweets, users, followers, images, media and more.<br/>`social` `twitter` `x` `search` |
228
- | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | Get realtime crypto price, BTC, ETH, BNB, and the latest insights.The latest coin news and airdrop opportunities.<br/>`crypto` `btc` `eth` `bnb` |
223
+ | Recent Submits | Description |
224
+ | ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
225
+ | [Calendar Assistant](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | A plugin to manage your calendar events # will auto generate i18n in workflow<br/>`calendar` `schedule` `will-auto-generate-i-18-n-in-workflow` |
226
+ | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | Get realtime crypto price, BTC, ETH, BNB, and the latest insights.The latest coin news and airdrop opportunities.<br/>`crypto` `btc` `eth` `bnb` |
227
+ | [Bilibili](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **LobeHub** on **2024-01-27**</sup> | Dive into Bilibili's vast content with features like keyword video search, replay access, interactive danmaku, trending video recommendations, and hot-search insights, all at your fingertips.<br/>`video` `bilibili` `search` |
228
+ | [Steam](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **LobeHub** on **2024-01-27**</sup> | Obtain game information and user reviews from Steam.<br/>`steam` `game` |
229
229
 
230
- > 📊 Total plugins: [<kbd>**59**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
230
+ > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
231
231
 
232
232
  <!-- PLUGIN LIST -->
233
233
 
@@ -259,14 +259,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
259
259
 
260
260
  <!-- AGENT LIST -->
261
261
 
262
- | Recent Submits | Description |
263
- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
264
- | [Electronic Tutor](https://chat-preview.lobehub.com/market?agent=elec-circuit-tutor-prompt)<br/><sup>By **[XUANJI233](https://github.com/XUANJI233)** on **2024-03-22**</sup> | Specializes in explaining the principles of digital and analog circuits, providing fundamental guidance in electronics.<br/>`electronics` `tutor` `explanation` `circuits` `principles` |
265
- | [Game Text Translator](https://chat-preview.lobehub.com/market?agent=translation-tutor-prompt)<br/><sup>By **[XUANJI233](https://github.com/XUANJI233)** on **2024-03-22**</sup> | Translation of game text including puns and slang explanations (please use claude). Wrap special symbols with \`\`\`.<br/>`game` `text` `translation` `assistance` |
266
- | [Amazon Listing Copywriter](https://chat-preview.lobehub.com/market?agent=amazon-listing-copywriter)<br/><sup>By **[SpeedupMaster](https://github.com/SpeedupMaster)** on **2024-03-19**</sup> | Expert in writing persuasive Amazon listings with optimized keywords.<br/>`copywriting` `amazon-product-detail-pages` `seo` `keywords` |
267
- | [Collaborative Logical Thinking Team](https://chat-preview.lobehub.com/market?agent=gpt-tot)<br/><sup>By **[luciouskami](https://github.com/luciouskami)** on **2024-03-19**</sup> | Using the mind map method, three logical thinking experts collaborate to solve a problem, and present their detailed thought processes in Markdown table format.<br/>`collaboration` `logical-thinking` `solution` |
262
+ | Recent Submits | Description |
263
+ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
264
+ | [Claim Analyzer](https://chat-preview.lobehub.com/market?agent=fact-checking)<br/><sup>By **[pedroespecial101](https://github.com/pedroespecial101)** on **2024-03-25**</sup> | Detailed truth analyzer (from <https://github.com/danielmiessler/fabric>)<br/>`https-github-com-danielmiessler-fabric` |
265
+ | [Rap Lyric Master](https://chat-preview.lobehub.com/market?agent=rap-writer)<br/><sup>By **[aoocar](https://github.com/aoocar)** on **2024-03-25**</sup> | Match lyrics in the form of rap lyrics, and create rap lyrics according to the reference format<br/>`rap` `lyrics` |
266
+ | [Mdx SEO Expert](https://chat-preview.lobehub.com/market?agent=mdx-seo)<br/><sup>By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-24**</sup> | Skilled in converting Markdown article content into optimized matter JSON format data, enhancing the article's online visibility and search engine ranking.<br/>`seo` `markdown` |
267
+ | [Traditional Chinese Medicine Practitioner](https://chat-preview.lobehub.com/market?agent=claude-national-medical-master)<br/><sup>By **[GalileoFe](https://github.com/GalileoFe)** on **2024-03-22**</sup> | Let me take a look!<br/>`consultation` `health` |
268
268
 
269
- > 📊 Total agents: [<kbd>**213**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
269
+ > 📊 Total agents: [<kbd>**218**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
270
270
 
271
271
  <!-- AGENT LIST -->
272
272
 
package/README.zh-CN.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  <h1>Lobe Chat</h1>
6
6
 
7
- 开源、现代化设计的 ChatGPT/LLMs 聊天应用与开发框架<br/>
7
+ 现代化设计的开源 ChatGPT/LLMs 聊天应用与开发框架<br/>
8
8
  支持语音合成、多模态、可扩展的([function call][docs-functionc-call])插件系统<br/>
9
9
  一键**免费**拥有你自己的 ChatGPT/Gemini/Claude/Ollama 应用
10
10
 
@@ -124,6 +124,7 @@
124
124
  - **Anthropic (Claude)**:接入了 Anthropic 的 **Claude** 系列模型,包括 Claude 3 和 Claude 2,多模态突破,超长上下文,树立行业新基准。[了解更多](https://www.anthropic.com/claude)
125
125
  - **ChatGLM**:加入了智谱的 **ChatGLM** 系列模型(GLM-4/GLM-4-vision/GLM-3-turbo),为用户提供了另一种高效的会话模型选择。[了解更多](https://www.zhipuai.cn/)
126
126
  - **Moonshot AI (月之暗面)**:集成了 Moonshot 系列模型,这是一家来自中国的创新性 AI 创业公司,旨在提供更深层次的会话理解。[了解更多](https://www.moonshot.cn/)
127
+ - **01.AI (零一万物)**:集成了零一万物模型,系列 API 具备较快的推理速度,这不仅缩短了处理时间,同时也保持了出色的模型效果。[了解更多](https://www.lingyiwanwu.com/)
127
128
  - **Groq**:接入了 Groq 的 AI 模型,高效处理消息序列,生成回应,胜任多轮对话及单次交互任务。[了解更多](https://groq.com/)
128
129
  - **OpenRouter**:其支持包括 **Claude 3**,**Gemma**,**Mistral**,**Llama2**和**Cohere**等模型路由,支持智能路由优化,提升使用效率,开放且灵活。[了解更多](https://openrouter.ai/)
129
130
 
@@ -211,14 +212,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
211
212
 
212
213
  <!-- PLUGIN LIST -->
213
214
 
214
- | 最近新增 | 插件描述 |
215
- | ----------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
216
- | [日历助手](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | 一个用于管理日历事件的插件 # 将自动生成工作流程中的 i18n<br/>`日历` `日程安排` `将自动生成工作流程中的-i-18-n` |
217
- | [图表和图示](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **pyxl** on **2024-02-05**</sup> | 美人鱼图表,演示文稿方案,分析,研究网站,饼图。<br/>`图表` `图示` |
218
- | [社交搜索](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-02-02**</sup> | 社交搜索提供访问推文、用户、关注者、图片、媒体等功能。<br/>`社交` `推特` `x` `搜索` |
219
- | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | 获取实时加密货币价格,BTC,ETH,BNB 和最新见解。最新的币新闻和空投机会。<br/>`加密货币` `btc` `eth` `bnb` |
215
+ | 最近新增 | 插件描述 |
216
+ | ----------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
217
+ | [日历助手](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | 一个用于管理日历事件的插件 # 将自动生成工作流程中的 i18n<br/>`日历` `日程安排` `将自动生成工作流程中的-i-18-n` |
218
+ | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | 获取实时加密货币价格,BTC,ETH,BNB 和最新见解。最新的币新闻和空投机会。<br/>`加密货币` `btc` `eth` `bnb` |
219
+ | [哔哩哔哩](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **LobeHub** on **2024-01-27**</sup> | 通过关键词视频搜索、回放访问、互动弹幕、热门视频推荐和热搜洞察等功能,深入体验哔哩哔哩丰富的内容,尽在您的指尖。<br/>`视频` `哔哩哔哩` `搜索` |
220
+ | [Steam](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **LobeHub** on **2024-01-27**</sup> | Steam 获取游戏信息和用户评论。<br/>`steam` `game` |
220
221
 
221
- > 📊 Total plugins: [<kbd>**59**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
222
+ > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
222
223
 
223
224
  <!-- PLUGIN LIST -->
224
225
 
@@ -246,14 +247,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
246
247
 
247
248
  <!-- AGENT LIST -->
248
249
 
249
- | 最近新增 | 助手说明 |
250
- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
251
- | [电子学导师](https://chat-preview.lobehub.com/market?agent=elec-circuit-tutor-prompt)<br/><sup>By **[XUANJI233](https://github.com/XUANJI233)** on **2024-03-22**</sup> | 擅长数字和模拟电路原理解释,提供电子学基础指导。<br/>`电子学` `导师` `解释` `电路` `原理` |
252
- | [游戏文本翻译师](https://chat-preview.lobehub.com/market?agent=translation-tutor-prompt)<br/><sup>By **[XUANJI233](https://github.com/XUANJI233)** on **2024-03-22**</sup> | 游戏文本的翻译与双关、俚语解释 (请使用 claude),如果有特殊符号请使用 \`\`\` 包裹<br/>`游戏` `文本` `翻译` `辅助` |
253
- | [亚马逊清单文案撰稿员](https://chat-preview.lobehub.com/market?agent=amazon-listing-copywriter)<br/><sup>By **[SpeedupMaster](https://github.com/SpeedupMaster)** on **2024-03-19**</sup> | 擅长撰写具有优化关键词的有说服力的亚马逊清单的专家。<br/>`撰稿` `亚马逊产品详情页` `搜索引擎优化` `关键词` |
254
- | [协作逻辑思维团队](https://chat-preview.lobehub.com/market?agent=gpt-tot)<br/><sup>By **[luciouskami](https://github.com/luciouskami)** on **2024-03-19**</sup> | 使用思维树方法,三位逻辑思维专家协作解答问题,以 Markdown 表格展示。<br/>`协作` `逻辑思维` `解答` |
250
+ | 最近新增 | 助手说明 |
251
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
252
+ | [索赔分析器](https://chat-preview.lobehub.com/market?agent=fact-checking)<br/><sup>By **[pedroespecial101](https://github.com/pedroespecial101)** on **2024-03-25**</sup> | 详细的真相分析器(来自 <https://github.com/danielmiessler/fabric)><br/>`https-github-com-danielmiessler-fabric` |
253
+ | [Rap 说唱歌词大师](https://chat-preview.lobehub.com/market?agent=rap-writer)<br/><sup>By **[aoocar](https://github.com/aoocar)** on **2024-03-25**</sup> | 将歌词以 rap 歌词的形式进行匹配,按照参考格式进行 rap 歌词创作<br/>`说唱` `歌词` |
254
+ | [Mdx SEO 专家](https://chat-preview.lobehub.com/market?agent=mdx-seo)<br/><sup>By **[canisminor1990](https://github.com/canisminor1990)** on **2024-03-24**</sup> | 擅长将 Markdown 文章内容转换为优化的 JSON 格式数据,增强文章的在线可见性和搜索引擎排名。<br/>`seo` `markdown` |
255
+ | [老中医](https://chat-preview.lobehub.com/market?agent=claude-national-medical-master)<br/><sup>By **[GalileoFe](https://github.com/GalileoFe)** on **2024-03-22**</sup> | 让我康康!<br/>`咨询` `健康` |
255
256
 
256
- > 📊 Total agents: [<kbd>**213**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
257
+ > 📊 Total agents: [<kbd>**218**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
257
258
 
258
259
  <!-- AGENT LIST -->
259
260
 
@@ -176,6 +176,7 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
176
176
  - 描述:这是你在 Groq AI 服务中申请的 API 密钥
177
177
  - 默认值:-
178
178
  - 示例:`gsk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
179
+
179
180
  ## OpenRouter AI
180
181
 
181
182
  ### `OPENROUTER_API_KEY`
@@ -185,4 +186,13 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
185
186
  - 默认值:-
186
187
  - 示例:`sk-or-v1-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=`
187
188
 
189
+ ## 01 AI
190
+
191
+ ### `ZEROONE_API_KEY`
192
+
193
+ - 类型:必选
194
+ - 描述:这是你在零一万物服务中申请的 API 密钥
195
+ - 默认值:-
196
+ - 示例:`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`
197
+
188
198
  [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
@@ -16,6 +16,7 @@
16
16
  - **Google AI (Gemini Pro、Gemini Vision)**:接入了 Google 的 **Gemini** 系列模型,包括 Gemini 和 Gemini Pro,以支持更高级的语言理解和生成。[了解更多](https://deepmind.google/technologies/gemini/)
17
17
  - **ChatGLM**:加入了智谱的 **ChatGLM** 系列模型(GLM-4/GLM-4-vision/GLM-3-turbo),为用户提供了另一种高效的会话模型选择。[了解更多](https://www.zhipuai.cn/)
18
18
  - **Moonshot AI (月之暗面)**:集成了 Moonshot 系列模型,这是一家来自中国的创新性 AI 创业公司,旨在提供更深层次的会话理解。[了解更多](https://www.moonshot.cn/)
19
+ - **01 AI (零一万物)**:集成了零一万物模型,系列 API 具备较快的推理速度,这不仅缩短了处理时间,同时也保持了出色的模型效果。[了解更多](https://www.lingyiwanwu.com/)
19
20
 
20
21
  同时,我们也在计划支持更多的模型服务商,如 Replicate 和 Perplexity 等,以进一步丰富我们的服务商库。如果你希望让 LobeChat 支持你喜爱的服务商,欢迎加入我们的[社区讨论](https://github.com/lobehub/lobe-chat/discussions/1284)。
21
22
 
@@ -0,0 +1,47 @@
1
+ ---
2
+ title: Using the Local Qwen Model
3
+ image: https://github.com/lobehub/lobe-chat/assets/28616219/689e19ea-3003-4e15-a1d5-b7343d5ba898
4
+ ---
5
+
6
+ # Using the Local Qwen Model
7
+
8
+ <Image alt={'Using Qwen in LobeChat'} cover src={'https://github.com/lobehub/lobe-chat/assets/28616219/7a5fd01a-9fed-49c1-93a3-422269213f19'} />
9
+
10
+ [Qwen](https://github.com/QwenLM/Qwen1.5) is a large language model (LLM) open-sourced by Alibaba Cloud. It is officially defined as a constantly evolving AI large model, and it achieves more accurate Chinese recognition capabilities through more training set content.
11
+
12
+ <Video src="https://github.com/lobehub/lobe-chat/assets/28616219/31e5f625-8dc4-4a5f-a5fd-d28d0457782d" />
13
+
14
+ Now, through the integration of LobeChat and [Ollama](https://ollama.com/), you can easily use Qwen in LobeChat. This document will guide you on how to use the local deployment version of Qwen in LobeChat:
15
+
16
+ <Steps>
17
+ ## Local Installation of Ollama
18
+
19
+ First, you need to install Ollama. For the installation process, please refer to the [Ollama Usage Document](/en/usage/providers/ollama).
20
+
21
+ ## Pull the Qwen Model to Local with Ollama
22
+
23
+ After installing Ollama, you can install the Qwen model with the following command, taking the 14b model as an example:
24
+
25
+ ```bash
26
+ ollama pull qwen:14b
27
+ ```
28
+ <Callout type={'info'}>
29
+ The local version of Qwen provides different model sizes to choose from. Please refer to the
30
+ [Qwen's Ollama integration page](https://ollama.com/library/qwen) to understand how to choose the
31
+ model size.
32
+ </Callout>
33
+
34
+ <Image alt={'Use Ollama Pull Qwen Model'} height={473} inStep src={'https://github.com/lobehub/lobe-chat/assets/1845053/fe34fdfe-c2e4-4d6a-84d7-4ebc61b2516a'} />
35
+
36
+ ### Select the Qwen Model
37
+
38
+ In the LobeChat conversation page, open the model selection panel, and then select the Qwen model.
39
+
40
+ <Image alt={'Choose Qwen Model'} height={430} inStep src={'https://github.com/lobehub/lobe-chat/assets/28616219/e0608cca-f62f-414a-bc55-28a61ba21f14'} />
41
+
42
+ <Callout type={'info'}>
43
+ If you do not see the Ollama provider in the model selection panel, please refer to [Integration with Ollama](/en/self-hosting/examples/ollama) to learn how to enable the Ollama provider in LobeChat.
44
+ </Callout>
45
+ </Steps>
46
+
47
+ Next, you can have a conversation with the local Qwen model in LobeChat.
@@ -0,0 +1,45 @@
1
+ ---
2
+ title: 使用本地通义千问 Qwen 模型
3
+ image: https://github.com/lobehub/lobe-chat/assets/28616219/689e19ea-3003-4e15-a1d5-b7343d5ba898
4
+ ---
5
+
6
+ # 使用本地通义千问 Qwen 模型
7
+
8
+ <Image alt={'在 LobeChat 中使用 Qwen'} cover src={'https://github.com/lobehub/lobe-chat/assets/28616219/7a5fd01a-9fed-49c1-93a3-422269213f19'} />
9
+
10
+ [通义千问](https://github.com/QwenLM/Qwen1.5) 是阿里云开源的一款大语言模型(LLM),官方定义是一个不断进化的 AI 大模型,并通过更多的训练集内容达到更精准的中文识别能力。
11
+
12
+ <Video src="https://github.com/lobehub/lobe-chat/assets/28616219/31e5f625-8dc4-4a5f-a5fd-d28d0457782d" />
13
+
14
+ 现在,通过 LobeChat 与 [Ollama](https://ollama.com/) 的集成,你可以轻松地在 LobeChat 中使用 通义千问。
15
+
16
+ 本文档将指导你如何在 LobeChat 中使用通义千问本地部署版:
17
+
18
+ <Steps>
19
+ ### 本地安装 Ollama
20
+
21
+ 首先,你需要安装 Ollama,安装过程请查阅 [Ollama 使用文件](/zh/usage/providers/ollama)。
22
+
23
+ ### 用 Ollama 拉取 Qwen 模型到本地
24
+
25
+ 在安装完成 Ollama 后,你可以通过以下命令安装 Qwen 模型,以 14b 模型为例:
26
+
27
+ ```bash
28
+ ollama pull qwen:14b
29
+ ```
30
+
31
+ <Image alt={'使用 Ollama 拉取 Qwen 模型'} height={473} inStep src={'https://github.com/lobehub/lobe-chat/assets/1845053/fe34fdfe-c2e4-4d6a-84d7-4ebc61b2516a'} />
32
+
33
+ ### 选择 Qwen 模型
34
+
35
+ 在会话页面中,选择模型面板打开,然后选择 Qwen 模型。
36
+
37
+ <Image alt={'模型选择面板中选择 Qwen 模型'} height={430} inStep src={'https://github.com/lobehub/lobe-chat/assets/28616219/e0608cca-f62f-414a-bc55-28a61ba21f14'} />
38
+
39
+ <Callout type={'info'}>
40
+ 如果你没有在模型选择面板中看到 Ollama 服务商,请查阅 [与 Ollama
41
+ 集成](/zh/self-hosting/examples/ollama) 了解如何在 LobeChat 中开启 Ollama 服务商。
42
+ </Callout>
43
+ </Steps>
44
+
45
+ 接下来,你就可以使用 LobeChat 与本地 Qwen 模型对话了。
@@ -107,6 +107,7 @@
107
107
  "openai": "أوبن إيه آي",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01.AI الصفر والواحد",
110
111
  "zhipu": "Zhipu"
111
112
  },
112
113
  "noDescription": "لا توجد وصف",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "تكوين Ollama غير صحيح، يرجى التحقق من تكوين Ollama وإعادة المحاولة",
51
51
  "InvalidOpenRouterAPIKey": "مفتاح OpenRouter API غير صحيح أو فارغ، يرجى التحقق من مفتاح OpenRouter API وإعادة المحاولة",
52
52
  "InvalidPerplexityAPIKey": "مفتاح Perplexity API غير صحيح أو فارغ، يرجى التحقق من مفتاح Perplexity API وإعادة المحاولة",
53
+ "InvalidZeroOneAPIKey": "مفتاح ZeroOne API غير صحيح أو فارغ، يرجى التحقق من مفتاح ZeroOne API وإعادة المحاولة",
53
54
  "InvalidZhipuAPIKey": "مفتاح Zhipu API غير صحيح أو فارغ، يرجى التحقق من مفتاح Zhipu API وإعادة المحاولة",
54
55
  "LocationNotSupportError": "عذرًا، لا يدعم موقعك الحالي خدمة هذا النموذج، قد يكون ذلك بسبب قيود المنطقة أو عدم توفر الخدمة. يرجى التحقق مما إذا كان الموقع الحالي يدعم استخدام هذه الخدمة، أو محاولة استخدام معلومات الموقع الأخرى.",
55
56
  "MistralBizError": "طلب خدمة Mistral AI خاطئ، يرجى التحقق من المعلومات التالية أو إعادة المحاولة",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "عذرًا، فشل تهيئة عميل OpenAPI، يرجى التحقق من معلومات تكوين OpenAPI",
73
74
  "PluginServerError": "خطأ في استجابة الخادم لطلب الإضافة، يرجى التحقق من ملف وصف الإضافة وتكوين الإضافة وتنفيذ الخادم وفقًا لمعلومات الخطأ أدناه",
74
75
  "PluginSettingsInvalid": "تحتاج هذه الإضافة إلى تكوين صحيح قبل الاستخدام، يرجى التحقق من صحة تكوينك",
76
+ "ZeroOneBizError": "طلب خدمة ZeroOneBiz خطأ، يرجى التحقق من المعلومات أدناه أو إعادة المحاولة",
75
77
  "ZhipuBizError": "حدث خطأ في طلب خدمة Zhipu، يرجى التحقق من المعلومات التالية أو إعادة المحاولة"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "أدخل مفتاح Perplexity API الخاص بك للبدء في الجلسة. لن يتم تسجيل مفتاح الواجهة البرمجية لتطبيقات الجلسة",
121
123
  "title": "استخدام مفتاح Perplexity API المخصص"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "أدخل مفتاح ZeroOne API الخاص بك لبدء الجلسة. لن يتم تسجيل مفتاح الواجهة البرمجية لتطبيقك",
127
+ "title": "استخدام مفتاح واجهة برمجة التطبيقات الخاص بك لـ ZeroOne"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "أدخل مفتاح Zhipu API الخاص بك لبدء الجلسة. لن يقوم التطبيق بتسجيل مفتاح الواجهة البرمجية الخاص بك",
125
131
  "title": "استخدام مفتاح Zhipu API المخصص"
@@ -150,4 +156,4 @@
150
156
  "password": "كلمة المرور"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "مفتاح الواجهة البرمجية للتطبيق"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI الصفر والواحد",
206
+ "token": {
207
+ "desc": "أدخل مفتاح API من 01.AI الصفر والواحد",
208
+ "placeholder": "مفتاح API من 01.AI الصفر والواحد",
209
+ "title": "مفتاح API"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "Zhipu AI",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01.AI Null Eins Alles",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Keine Beschreibung vorhanden",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Ollama-Konfiguration ist ungültig. Bitte überprüfen Sie die Ollama-Konfiguration und versuchen Sie es erneut.",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API-Schlüssel ungültig oder leer. Bitte überprüfen Sie den OpenRouter API-Schlüssel und versuchen Sie es erneut.",
52
52
  "InvalidPerplexityAPIKey": "Perplexity API Key ist ungültig oder leer. Bitte überprüfen Sie den Perplexity API Key und versuchen Sie es erneut.",
53
+ "InvalidZeroOneAPIKey": "Ungültiger oder leerer ZeroOne-API-Schlüssel. Bitte überprüfen Sie den ZeroOne-API-Schlüssel und versuchen Sie es erneut.",
53
54
  "InvalidZhipuAPIKey": "Der Zhipu API-Schlüssel ist ungültig oder leer. Bitte überprüfen Sie den Zhipu API-Schlüssel und versuchen Sie es erneut.",
54
55
  "LocationNotSupportError": "Entschuldigung, Ihr Standort unterstützt diesen Modellservice möglicherweise aufgrund von regionalen Einschränkungen oder nicht aktivierten Diensten nicht. Bitte überprüfen Sie, ob der aktuelle Standort die Verwendung dieses Dienstes unterstützt, oder versuchen Sie, andere Standortinformationen zu verwenden.",
55
56
  "MistralBizError": "Beim Anfordern des Mistral AI-Dienstes ist ein Fehler aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Entschuldigung, die Initialisierung des OpenAPI-Clients ist fehlgeschlagen. Bitte überprüfen Sie die Konfigurationsinformationen des OpenAPI auf Richtigkeit",
73
74
  "PluginServerError": "Fehler bei der Serveranfrage des Plugins. Bitte überprüfen Sie die Fehlerinformationen unten in Ihrer Plugin-Beschreibungsdatei, Plugin-Konfiguration oder Serverimplementierung",
74
75
  "PluginSettingsInvalid": "Das Plugin muss korrekt konfiguriert werden, um verwendet werden zu können. Bitte überprüfen Sie Ihre Konfiguration auf Richtigkeit",
76
+ "ZeroOneBizError": "Anfrage an ZeroOneBiz-Dienst fehlgeschlagen. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut.",
75
77
  "ZhipuBizError": "Es ist ein Fehler bei der Anforderung des Zhipu-Dienstes aufgetreten. Bitte überprüfen Sie die folgenden Informationen oder versuchen Sie es erneut."
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Geben Sie Ihren eigenen Perplexity API Key ein, um das Gespräch zu beginnen. Die App speichert Ihren API Key nicht.",
121
123
  "title": "Verwenden Sie einen benutzerdefinierten Perplexity API Key"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "Geben Sie Ihren benutzerdefinierten ZeroOne-API-Schlüssel ein, um die Sitzung zu starten. Die App speichert Ihren API-Schlüssel nicht.",
127
+ "title": "Verwenden Sie einen benutzerdefinierten ZeroOne-API-Schlüssel"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Geben Sie Ihren Zhipu API-Schlüssel ein, um die Sitzung zu starten. Die Anwendung speichert Ihren API-Schlüssel nicht.",
125
131
  "title": "Verwenden von benutzerdefinierten Zhipu API-Schlüssel"
@@ -150,4 +156,4 @@
150
156
  "password": "Passwort"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "API-Schlüssel"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne",
206
+ "token": {
207
+ "desc": "Geben Sie den API-Schlüssel von 01.AI ZeroOne ein",
208
+ "placeholder": "01.AI ZeroOne API-Schlüssel",
209
+ "title": "API-Schlüssel"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "Zhipu AI",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01-AI",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "No description available",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",
51
51
  "InvalidOpenRouterAPIKey": "Invalid or empty OpenRouter API Key. Please check your OpenRouter API Key and try again.",
52
52
  "InvalidPerplexityAPIKey": "Perplexity API Key is incorrect or empty. Please check the Perplexity API Key and retry.",
53
+ "InvalidZeroOneAPIKey": "01-AI API Key is incorrect or empty. Please check the 01-AI API Key and retry.",
53
54
  "InvalidZhipuAPIKey": "Zhipu API Key is incorrect or empty. Please check the Zhipu API Key and retry.",
54
55
  "LocationNotSupportError": "We're sorry, your current location does not support this model service. This may be due to regional restrictions or the service not being available. Please confirm if the current location supports using this service, or try using a different location.",
55
56
  "MistralBizError": "Error occurred while requesting Mistral AI service. Please troubleshoot based on the following information or retry.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Sorry, the OpenAPI client failed to initialize. Please check if the OpenAPI configuration information is correct.",
73
74
  "PluginServerError": "Plugin server request returned an error. Please check your plugin manifest file, plugin configuration, or server implementation based on the error information below",
74
75
  "PluginSettingsInvalid": "This plugin needs to be correctly configured before it can be used. Please check if your configuration is correct",
76
+ "ZeroOneBizError": "Error requesting 01-AI service. Please troubleshoot or retry based on the following information.",
75
77
  "ZhipuBizError": "Error requesting Zhipu service. Please troubleshoot or retry based on the following information."
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Enter your Perplexity API Key to start the session. The app will not store your API Key.",
121
123
  "title": "Use custom Perplexity API Key"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "Enter your 01-AI API Key to start the session. The application will not store your API Key.",
127
+ "title": "Use Custom 01-AI API Key"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Enter your Zhipu API Key to start the session. The app will not store your API Key.",
125
131
  "title": "Use custom Zhipu API Key"
@@ -150,4 +156,4 @@
150
156
  "password": "Password"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "API Key"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01-AI",
206
+ "token": {
207
+ "desc": "Enter the API Key from 01-AI",
208
+ "placeholder": "01-AI API Key",
209
+ "title": "API Key"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "Zhipu",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01.AI ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Sin descripción",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "La configuración de Ollama no es válida, por favor revisa la configuración de Ollama e inténtalo de nuevo",
51
51
  "InvalidOpenRouterAPIKey": "La clave de API de OpenRouter es incorrecta o está vacía. Por favor, revisa la clave de API de OpenRouter e inténtalo de nuevo",
52
52
  "InvalidPerplexityAPIKey": "La clave de API de Perplexity es inválida o está vacía. Por favor, verifica la clave de API de Perplexity e inténtalo de nuevo",
53
+ "InvalidZeroOneAPIKey": "La clave de API de ZeroOneBiz es incorrecta o está vacía. Por favor, revise la clave de API de ZeroOneBiz e inténtelo de nuevo.",
53
54
  "InvalidZhipuAPIKey": "La clave de API de Zhipu es incorrecta o está vacía, por favor, verifica la clave de API de Zhipu e inténtalo de nuevo",
54
55
  "LocationNotSupportError": "Lo sentimos, tu ubicación actual no es compatible con este servicio de modelo, puede ser debido a restricciones geográficas o a que el servicio no está disponible. Por favor, verifica si tu ubicación actual es compatible con este servicio o intenta usar otra información de ubicación.",
55
56
  "MistralBizError": "Se produjo un error al solicitar el servicio Mistral AI. Por favor, revise la siguiente información o inténtelo de nuevo.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Lo sentimos, la inicialización del cliente OpenAPI ha fallado. Verifique si la información de configuración de OpenAPI es correcta",
73
74
  "PluginServerError": "Error al recibir la respuesta del servidor del complemento. Verifique el archivo de descripción del complemento, la configuración del complemento o la implementación del servidor según la información de error a continuación",
74
75
  "PluginSettingsInvalid": "Este complemento necesita una configuración correcta antes de poder usarse. Verifique si su configuración es correcta",
76
+ "ZeroOneBizError": "Se produjo un error al solicitar el servicio ZeroOneBiz. Por favor, revise la siguiente información o inténtelo de nuevo.",
75
77
  "ZhipuBizError": "Se produjo un error al solicitar el servicio Zhipu, por favor, verifica la siguiente información o inténtalo de nuevo"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Ingresa tu clave de API de Perplexity para comenzar la sesión. La aplicación no guardará tu clave de API",
121
123
  "title": "Usar tu propia clave de API de Perplexity"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "Ingrese su clave de API de ZeroOneBiz para comenzar la sesión. La aplicación no almacenará su clave de API.",
127
+ "title": "Usar clave de API personalizada de ZeroOneBiz"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Ingresa tu clave de API de Zhipu para comenzar la sesión. La aplicación no guardará tu clave de API",
125
131
  "title": "Usar clave de API personalizada de Zhipu"
@@ -150,4 +156,4 @@
150
156
  "password": "Contraseña"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "Clave API"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne",
206
+ "token": {
207
+ "desc": "Introduce la clave API de 01.AI ZeroOne",
208
+ "placeholder": "Clave API de 01.AI ZeroOne",
209
+ "title": "Clave API"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "Zhipu AI",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01. Intelligence Artificielle ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Aucune description disponible",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "La configuration d'Ollama n'est pas valide, veuillez vérifier la configuration d'Ollama et réessayer",
51
51
  "InvalidOpenRouterAPIKey": "La clé d'API OpenRouter est incorrecte ou manquante. Veuillez vérifier la clé d'API OpenRouter et réessayer.",
52
52
  "InvalidPerplexityAPIKey": "La clé API Perplexity est incorrecte ou vide. Veuillez vérifier la clé API Perplexity et réessayer.",
53
+ "InvalidZeroOneAPIKey": "零一万物 API Key 不正确或为空,请检查零一万物 API Key 后重试",
53
54
  "InvalidZhipuAPIKey": "Clé API Zhipu incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
54
55
  "LocationNotSupportError": "Désolé, votre emplacement actuel ne prend pas en charge ce service de modèle, peut-être en raison de restrictions géographiques ou de services non disponibles. Veuillez vérifier si votre emplacement actuel prend en charge ce service ou essayer avec une autre localisation.",
55
56
  "MistralBizError": "Erreur de service Mistral AI. Veuillez vérifier les informations ci-dessous ou réessayer.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Désolé, l'initialisation du client OpenAPI a échoué. Veuillez vérifier les informations de configuration d'OpenAPI.",
73
74
  "PluginServerError": "Erreur de réponse du serveur du plugin. Veuillez vérifier le fichier de description du plugin, la configuration du plugin ou la mise en œuvre côté serveur en fonction des informations d'erreur ci-dessous",
74
75
  "PluginSettingsInvalid": "Ce plugin doit être correctement configuré avant de pouvoir être utilisé. Veuillez vérifier votre configuration",
76
+ "ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
75
77
  "ZhipuBizError": "Erreur lors de la demande de service Zhipu, veuillez vérifier les informations ci-dessous ou réessayer"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Entrez votre clé API Perplexity pour commencer la session. L'application ne conservera pas votre clé API.",
121
123
  "title": "Utiliser une clé API Perplexity personnalisée"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "输入你的零一万物 API Key 即可开始会话。应用不会记录你的 API Key",
127
+ "title": "使用自定义零一万物 API Key"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Entrez votre clé API Zhipu pour commencer la session. L'application ne conservera pas votre clé API",
125
131
  "title": "Utiliser une clé API Zhipu personnalisée"
@@ -150,4 +156,4 @@
150
156
  "password": "Mot de passe"
151
157
  }
152
158
  }
153
- }
159
+ }