@lobehub/chat 0.141.1 → 0.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +6 -0
- package/CHANGELOG.md +50 -0
- package/Dockerfile +3 -0
- package/README.md +19 -15
- package/README.zh-CN.md +16 -15
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +10 -0
- package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
- package/docs/usage/providers/ollama/qwen.mdx +47 -0
- package/docs/usage/providers/ollama/qwen.zh-CN.mdx +45 -0
- package/locales/ar/common.json +1 -0
- package/locales/ar/error.json +7 -1
- package/locales/ar/setting.json +8 -0
- package/locales/de-DE/common.json +1 -0
- package/locales/de-DE/error.json +7 -1
- package/locales/de-DE/setting.json +8 -0
- package/locales/en-US/common.json +1 -0
- package/locales/en-US/error.json +7 -1
- package/locales/en-US/setting.json +8 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/es-ES/error.json +7 -1
- package/locales/es-ES/setting.json +8 -0
- package/locales/fr-FR/common.json +1 -0
- package/locales/fr-FR/error.json +7 -1
- package/locales/fr-FR/setting.json +8 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/it-IT/error.json +7 -1
- package/locales/it-IT/setting.json +30 -24
- package/locales/ja-JP/common.json +1 -0
- package/locales/ja-JP/error.json +7 -1
- package/locales/ja-JP/setting.json +30 -24
- package/locales/ko-KR/common.json +1 -0
- package/locales/ko-KR/error.json +7 -1
- package/locales/ko-KR/setting.json +8 -0
- package/locales/nl-NL/common.json +1 -0
- package/locales/nl-NL/error.json +7 -1
- package/locales/nl-NL/setting.json +30 -24
- package/locales/pl-PL/common.json +1 -0
- package/locales/pl-PL/error.json +7 -1
- package/locales/pl-PL/setting.json +8 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/pt-BR/error.json +7 -1
- package/locales/pt-BR/setting.json +8 -0
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/error.json +7 -1
- package/locales/ru-RU/setting.json +8 -0
- package/locales/tr-TR/common.json +1 -0
- package/locales/tr-TR/error.json +7 -1
- package/locales/tr-TR/setting.json +8 -0
- package/locales/vi-VN/common.json +1 -0
- package/locales/vi-VN/error.json +7 -1
- package/locales/vi-VN/setting.json +8 -0
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-CN/error.json +7 -1
- package/locales/zh-CN/setting.json +8 -0
- package/locales/zh-TW/common.json +1 -0
- package/locales/zh-TW/error.json +7 -1
- package/locales/zh-TW/setting.json +8 -0
- package/package.json +1 -1
- package/src/app/api/chat/[provider]/agentRuntime.ts +15 -2
- package/src/app/api/config/route.ts +2 -0
- package/src/app/api/errorResponse.ts +3 -0
- package/src/app/chat/(desktop)/features/SideBar/index.tsx +0 -1
- package/src/app/settings/llm/Google/index.tsx +10 -3
- package/src/app/settings/llm/ZeroOne/index.tsx +52 -0
- package/src/app/settings/llm/index.tsx +2 -0
- package/src/app/settings/sync/components/SystemIcon.tsx +11 -6
- package/src/components/ModelIcon/index.tsx +2 -0
- package/src/components/ModelProviderIcon/index.tsx +5 -0
- package/src/components/ModelTag/ModelIcon.tsx +2 -0
- package/src/config/modelProviders/index.ts +3 -0
- package/src/config/modelProviders/zeroone.ts +28 -0
- package/src/config/server/provider.ts +10 -2
- package/src/const/settings.ts +4 -0
- package/src/features/Conversation/Error/APIKeyForm/ZeroOne.tsx +60 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +6 -1
- package/src/features/Conversation/Error/index.tsx +1 -0
- package/src/libs/agent-runtime/error.ts +4 -1
- package/src/libs/agent-runtime/index.ts +1 -0
- package/src/libs/agent-runtime/types/type.ts +1 -0
- package/src/libs/agent-runtime/zeroone/index.ts +78 -0
- package/src/locales/default/common.ts +1 -0
- package/src/locales/default/error.ts +8 -1
- package/src/locales/default/setting.ts +8 -0
- package/src/services/_auth.ts +5 -1
- package/src/store/global/slices/settings/selectors/modelProvider.ts +11 -2
- package/src/types/settings/modelProvider.ts +7 -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,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 0.142.0](https://github.com/lobehub/lobe-chat/compare/v0.141.2...v0.142.0)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-03-25**</sup>
|
|
8
|
+
|
|
9
|
+
#### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **misc**: Support 01.AI as a new provider.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's improved
|
|
19
|
+
|
|
20
|
+
- **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))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
### [Version 0.141.2](https://github.com/lobehub/lobe-chat/compare/v0.141.1...v0.141.2)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2024-03-22**</sup>
|
|
33
|
+
|
|
34
|
+
#### 🐛 Bug Fixes
|
|
35
|
+
|
|
36
|
+
- **misc**: Fix window icon and scrollbar style.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### What's fixed
|
|
44
|
+
|
|
45
|
+
- **misc**: Fix window icon and scrollbar style, closes [#1691](https://github.com/lobehub/lobe-chat/issues/1691) ([4f46845](https://github.com/lobehub/lobe-chat/commit/4f46845))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
### [Version 0.141.1](https://github.com/lobehub/lobe-chat/compare/v0.141.0...v0.141.1)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2024-03-22**</sup>
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
An open-source, modern-design ChatGPT/LLMs UI/Framework.<br/>
|
|
8
8
|
Supports speech-synthesis, multi-modal, and extensible ([function call][docs-functionc-call]) plugin system.<br/>
|
|
9
|
-
One-click **FREE** deployment of your private ChatGPT/Gemini/Ollama chat application.
|
|
9
|
+
One-click **FREE** deployment of your private OpenAI ChatGPT/Claude/Gemini/Groq/Ollama chat application.
|
|
10
10
|
|
|
11
11
|
**English** · [简体中文](./README.zh-CN.md) · [Changelog](./CHANGELOG.md) · [Documents][docs] · [Report Bug][github-issues-link] · [Request Feature][github-issues-link]
|
|
12
12
|
|
|
@@ -121,9 +121,13 @@ In this way, LobeChat can more flexibly adapt to the needs of different users, w
|
|
|
121
121
|
We have implemented support for the following model service providers:
|
|
122
122
|
|
|
123
123
|
- **AWS Bedrock**: Integrated with AWS Bedrock service, supporting models such as **Claude / LLama2**, providing powerful natural language processing capabilities. [Learn more](https://aws.amazon.com/cn/bedrock)
|
|
124
|
+
- **Anthropic (Claude)**: Accessed Anthropic's **Claude** series models, including Claude 3 and Claude 2, with breakthroughs in multi-modal capabilities and extended context, setting a new industry benchmark. [Learn more](https://www.anthropic.com/claude)
|
|
124
125
|
- **Google AI (Gemini Pro, Gemini Vision)**: Access to Google's **Gemini** series models, including Gemini and Gemini Pro, to support advanced language understanding and generation. [Learn more](https://deepmind.google/technologies/gemini/)
|
|
125
126
|
- **ChatGLM**: Added the **ChatGLM** series models from Zhipuai (GLM-4/GLM-4-vision/GLM-3-turbo), providing users with another efficient conversation model choice. [Learn more](https://www.zhipuai.cn/)
|
|
126
127
|
- **Moonshot AI (Dark Side of the Moon)**: Integrated with the Moonshot series models, an innovative AI startup from China, aiming to provide deeper conversation understanding. [Learn more](https://www.moonshot.cn/)
|
|
128
|
+
- **Groq**: Accessed Groq's AI models, efficiently processing message sequences and generating responses, capable of multi-turn dialogues and single-interaction tasks. [Learn more](https://groq.com/)
|
|
129
|
+
- **OpenRouter**: Supports routing of models including **Claude 3**, **Gemma**, **Mistral**, **Llama2** and **Cohere**, with intelligent routing optimization to improve usage efficiency, open and flexible. [Learn more](https://openrouter.ai/)
|
|
130
|
+
- **01.AI (Yi Model)**: Integrated the 01.AI models, with series of APIs featuring fast inference speed, which not only shortened the processing time, but also maintained excellent model performance. [Learn more](https://01.ai/)
|
|
127
131
|
|
|
128
132
|
At the same time, we are also planning to support more model service providers, such as Replicate and Perplexity, to further enrich our service provider library. If you would like LobeChat to support your favorite service provider, feel free to join our [community discussion](https://github.com/lobehub/lobe-chat/discussions/1284).
|
|
129
133
|
|
|
@@ -216,14 +220,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
|
216
220
|
|
|
217
221
|
<!-- PLUGIN LIST -->
|
|
218
222
|
|
|
219
|
-
| Recent Submits | Description
|
|
220
|
-
| ----------------------------------------------------------------------------------------------------------------- |
|
|
221
|
-
| [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`
|
|
222
|
-
| [
|
|
223
|
-
| [
|
|
224
|
-
| [
|
|
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` |
|
|
225
229
|
|
|
226
|
-
> 📊 Total plugins: [<kbd>**
|
|
230
|
+
> 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
|
|
227
231
|
|
|
228
232
|
<!-- PLUGIN LIST -->
|
|
229
233
|
|
|
@@ -255,14 +259,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
|
|
|
255
259
|
|
|
256
260
|
<!-- AGENT LIST -->
|
|
257
261
|
|
|
258
|
-
| Recent Submits
|
|
259
|
-
|
|
|
260
|
-
| [
|
|
261
|
-
| [
|
|
262
|
-
| [
|
|
263
|
-
| [
|
|
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` |
|
|
264
268
|
|
|
265
|
-
> 📊 Total agents: [<kbd>**
|
|
269
|
+
> 📊 Total agents: [<kbd>**218**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
266
270
|
|
|
267
271
|
<!-- AGENT LIST -->
|
|
268
272
|
|
package/README.zh-CN.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<h1>Lobe Chat</h1>
|
|
6
6
|
|
|
7
|
-
|
|
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
|
-
| [
|
|
218
|
-
| [
|
|
219
|
-
| [
|
|
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>**
|
|
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
|
-
| [
|
|
252
|
-
| [
|
|
253
|
-
| [
|
|
254
|
-
| [
|
|
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>**
|
|
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 模型对话了。
|
package/locales/ar/common.json
CHANGED
package/locales/ar/error.json
CHANGED
|
@@ -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
|
+
}
|
package/locales/ar/setting.json
CHANGED
|
@@ -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": {
|
package/locales/de-DE/error.json
CHANGED
|
@@ -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": {
|
package/locales/en-US/error.json
CHANGED
|
@@ -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": {
|
package/locales/es-ES/error.json
CHANGED
|
@@ -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": {
|