@lobehub/chat 1.1.7 → 1.1.9

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 (50) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docs/usage/providers/01ai.mdx +1 -1
  5. package/docs/usage/providers/01ai.zh-CN.mdx +1 -1
  6. package/docs/usage/providers/anthropic.mdx +1 -1
  7. package/docs/usage/providers/anthropic.zh-CN.mdx +1 -1
  8. package/docs/usage/providers/azure.mdx +1 -1
  9. package/docs/usage/providers/azure.zh-CN.mdx +1 -1
  10. package/docs/usage/providers/bedrock.mdx +1 -1
  11. package/docs/usage/providers/bedrock.zh-CN.mdx +1 -1
  12. package/docs/usage/providers/deepseek.mdx +1 -1
  13. package/docs/usage/providers/deepseek.zh-CN.mdx +1 -1
  14. package/docs/usage/providers/gemini.mdx +1 -1
  15. package/docs/usage/providers/gemini.zh-CN.mdx +1 -1
  16. package/docs/usage/providers/groq.mdx +1 -1
  17. package/docs/usage/providers/groq.zh-CN.mdx +1 -1
  18. package/docs/usage/providers/minimax.mdx +1 -1
  19. package/docs/usage/providers/minimax.zh-CN.mdx +1 -1
  20. package/docs/usage/providers/mistral.mdx +1 -1
  21. package/docs/usage/providers/mistral.zh-CN.mdx +1 -1
  22. package/docs/usage/providers/moonshot.mdx +1 -1
  23. package/docs/usage/providers/moonshot.zh-CN.mdx +1 -1
  24. package/docs/usage/providers/openai.mdx +1 -1
  25. package/docs/usage/providers/openai.zh-CN.mdx +1 -1
  26. package/docs/usage/providers/openrouter.mdx +1 -1
  27. package/docs/usage/providers/openrouter.zh-CN.mdx +2 -2
  28. package/docs/usage/providers/perplexity.mdx +1 -1
  29. package/docs/usage/providers/perplexity.zh-CN.mdx +1 -1
  30. package/docs/usage/providers/qwen.mdx +1 -1
  31. package/docs/usage/providers/qwen.zh-CN.mdx +1 -1
  32. package/docs/usage/providers/stepfun.mdx +1 -1
  33. package/docs/usage/providers/stepfun.zh-CN.mdx +2 -2
  34. package/docs/usage/providers/togetherai.mdx +1 -1
  35. package/docs/usage/providers/togetherai.zh-CN.mdx +2 -2
  36. package/docs/usage/providers/zhipu.mdx +1 -1
  37. package/docs/usage/providers/zhipu.zh-CN.mdx +2 -2
  38. package/docs/usage/tools-calling/anthropic.zh-CN.mdx +935 -2
  39. package/docs/usage/tools-calling/openai.zh-CN.mdx +4 -2
  40. package/docs/usage/tools-calling.zh-CN.mdx +15 -1
  41. package/package.json +2 -2
  42. package/src/app/(main)/chat/@session/features/SessionListContent/ListItem/index.tsx +1 -1
  43. package/src/app/(main)/settings/llm/components/Checker.tsx +3 -1
  44. package/src/database/server/models/session.ts +1 -0
  45. package/src/libs/agent-runtime/utils/anthropicHelpers.test.ts +104 -0
  46. package/src/libs/agent-runtime/utils/anthropicHelpers.ts +28 -7
  47. package/src/libs/agent-runtime/utils/streams/anthropic.test.ts +156 -0
  48. package/src/libs/agent-runtime/utils/streams/anthropic.ts +12 -3
  49. package/src/libs/agent-runtime/utils/streams/protocol.ts +1 -0
  50. package/src/server/routers/edge/config/__snapshots__/index.test.ts.snap +0 -22
package/CHANGELOG.md CHANGED
@@ -2,6 +2,66 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.1.9](https://github.com/lobehub/lobe-chat/compare/v1.1.8...v1.1.9)
6
+
7
+ <sup>Released on **2024-06-24**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix agent tags.
12
+
13
+ #### 💄 Styles
14
+
15
+ - **ui**: Fixed incorrect text display on connect check.
16
+ - **misc**: Always show action on mobile.
17
+
18
+ <br/>
19
+
20
+ <details>
21
+ <summary><kbd>Improvements and Fixes</kbd></summary>
22
+
23
+ #### What's fixed
24
+
25
+ - **misc**: Fix agent tags, closes [#3015](https://github.com/lobehub/lobe-chat/issues/3015) ([01e965b](https://github.com/lobehub/lobe-chat/commit/01e965b))
26
+
27
+ #### Styles
28
+
29
+ - **ui**: Fixed incorrect text display on connect check, closes [#2994](https://github.com/lobehub/lobe-chat/issues/2994) ([5160f23](https://github.com/lobehub/lobe-chat/commit/5160f23))
30
+ - **misc**: Always show action on mobile, closes [#1863](https://github.com/lobehub/lobe-chat/issues/1863) ([f40292e](https://github.com/lobehub/lobe-chat/commit/f40292e))
31
+
32
+ </details>
33
+
34
+ <div align="right">
35
+
36
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
37
+
38
+ </div>
39
+
40
+ ### [Version 1.1.8](https://github.com/lobehub/lobe-chat/compare/v1.1.7...v1.1.8)
41
+
42
+ <sup>Released on **2024-06-24**</sup>
43
+
44
+ #### 🐛 Bug Fixes
45
+
46
+ - **misc**: Fix anthropic parallel tools calling.
47
+
48
+ <br/>
49
+
50
+ <details>
51
+ <summary><kbd>Improvements and Fixes</kbd></summary>
52
+
53
+ #### What's fixed
54
+
55
+ - **misc**: Fix anthropic parallel tools calling, closes [#3010](https://github.com/lobehub/lobe-chat/issues/3010) ([1d891ac](https://github.com/lobehub/lobe-chat/commit/1d891ac))
56
+
57
+ </details>
58
+
59
+ <div align="right">
60
+
61
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
62
+
63
+ </div>
64
+
5
65
  ### [Version 1.1.7](https://github.com/lobehub/lobe-chat/compare/v1.1.6...v1.1.7)
6
66
 
7
67
  <sup>Released on **2024-06-24**</sup>
package/README.md CHANGED
@@ -265,14 +265,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
265
265
 
266
266
  <!-- AGENT LIST -->
267
267
 
268
- | Recent Submits | Description |
269
- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
270
- | [Fastapi Project Development Assistant](https://chat-preview.lobehub.com/market?agent=fastapi-development)<br/><sup>By **[xwxw098](https://github.com/xwxw098)** on **2024-06-19**</sup> | Proficient in Python modular development, skilled in using FastAPI, PostgreSQL, Tortoise-ORM, and other technologies, able to provide clear code structure and detailed comments for large projects.<br/>`fast-api` `python` `modular-development` |
271
- | [IT Systems Architect](https://chat-preview.lobehub.com/market?agent=it-system-architect)<br/><sup>By **[a562314](https://github.com/a562314)** on **2024-06-19**</sup> | Senior IT architect specializing in requirements analysis, system design, technology selection, and cross-platform system optimization. With over 5 years of experience, proficient in Windows, macOS, and Linux operating systems, skilled in troubleshooting, and security protection.<br/>`it-architecture-design` `problem-solving` `agile-development` `system-optimization` `cross-platform-skills` `teamwork` |
272
- | [Linux Kernel Expert](https://chat-preview.lobehub.com/market?agent=linux-kernel)<br/><sup>By **[wming126](https://github.com/wming126)** on **2024-06-19**</sup> | Role Description: I am an expert in Linux kernel, with a deep understanding and analytical ability of the latest kernel source code (as of June 2024). I can provide users with detailed and accurate information about the Linux kernel.<br/>`linux` `kernel` |
273
- | [NovelAI Drawing Assistant](https://chat-preview.lobehub.com/market?agent=novel-ai-pormpt-helper)<br/><sup>By **[WallBreakerNO4](https://github.com/WallBreakerNO4)** on **2024-06-18**</sup> | I can turn the scenes you describe into prompts for NovelAI<br/>`deep-learning` `image-generation` `algorithm` `prompt` |
274
-
275
- > 📊 Total agents: [<kbd>**292**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
268
+ | Recent Submits | Description |
269
+ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
270
+ | [AOSP Source Code Expert](https://chat-preview.lobehub.com/market?agent=aosp-development)<br/><sup>By **[viruscoding](https://github.com/viruscoding)** on **2024-06-24**</sup> | An expert in AOSP (Android Open Source Project) for Android, with a deep understanding and analytical ability of the latest AOSP source code.<br/>`aosp` |
271
+ | [Fastapi Project Development Assistant](https://chat-preview.lobehub.com/market?agent=fastapi-development)<br/><sup>By **[xwxw098](https://github.com/xwxw098)** on **2024-06-19**</sup> | Proficient in Python modular development, skilled in using FastAPI, PostgreSQL, Tortoise-ORM, and other technologies, able to provide clear code structure and detailed comments for large projects.<br/>`fast-api` `python` `modular-development` |
272
+ | [IT Systems Architect](https://chat-preview.lobehub.com/market?agent=it-system-architect)<br/><sup>By **[a562314](https://github.com/a562314)** on **2024-06-19**</sup> | Senior IT architect specializing in requirements analysis, system design, technology selection, and cross-platform system optimization. With over 5 years of experience, proficient in Windows, macOS, and Linux operating systems, skilled in troubleshooting, and security protection.<br/>`it-architecture-design` `problem-solving` `agile-development` `system-optimization` `cross-platform-skills` `teamwork` |
273
+ | [Linux Kernel Expert](https://chat-preview.lobehub.com/market?agent=linux-kernel)<br/><sup>By **[wming126](https://github.com/wming126)** on **2024-06-19**</sup> | Role Description: I am an expert in Linux kernel, with a deep understanding and analytical ability of the latest kernel source code (as of June 2024). I can provide users with detailed and accurate information about the Linux kernel.<br/>`linux` `kernel` |
274
+
275
+ > 📊 Total agents: [<kbd>**293**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
276
276
 
277
277
  <!-- AGENT LIST -->
278
278
 
package/README.zh-CN.md CHANGED
@@ -253,14 +253,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
253
253
 
254
254
  <!-- AGENT LIST -->
255
255
 
256
- | 最近新增 | 助手说明 |
257
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
258
- | [Fastapi 项目开发助手](https://chat-preview.lobehub.com/market?agent=fastapi-development)<br/><sup>By **[xwxw098](https://github.com/xwxw098)** on **2024-06-19**</sup> | 擅长 Python 模块化开发,熟练运用 FastAPI、PostgreSQL、Tortoise-ORM 等技术栈,能为大型项目提供清晰的代码结构并添加详细注释。<br/>`fast-api` `python` `模块化开发` |
259
- | [IT 系统架构师](https://chat-preview.lobehub.com/market?agent=it-system-architect)<br/><sup>By **[a562314](https://github.com/a562314)** on **2024-06-19**</sup> | 资深 IT 架构师,擅长需求分析、系统设计、技术选型和跨平台系统优化。5 年以上经验,精通 WindowsmacOS 和 Linux 三大操作系统,具备故障排除和安全防护能力<br/>`it架构设计` `问题解决` `敏捷开发` `系统优化` `跨平台技能` |
260
- | [Linux 内核专家](https://chat-preview.lobehub.com/market?agent=linux-kernel)<br/><sup>By **[wming126](https://github.com/wming126)** on **2024-06-19**</sup> | 角色描述: 我是一位精通 Linux 内核的专家,对最新内核源代码(截至 2024 6 月)有着深入的理解和分析能力。我可以为用户提供关于 Linux 内核的详细、准确的信息。<br/>`linux` `kernel` |
261
- | [NovelAI 绘画助手](https://chat-preview.lobehub.com/market?agent=novel-ai-pormpt-helper)<br/><sup>By **[WallBreakerNO4](https://github.com/WallBreakerNO4)** on **2024-06-18**</sup> | 我能将你描述的场景转成 NovelAI prompt<br/>`深度学习` `图像生成` `算法` `提示符` |
262
-
263
- > 📊 Total agents: [<kbd>**292**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
256
+ | 最近新增 | 助手说明 |
257
+ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
258
+ | [AOSP 源码专家](https://chat-preview.lobehub.com/market?agent=aosp-development)<br/><sup>By **[viruscoding](https://github.com/viruscoding)** on **2024-06-24**</sup> | 一位精通 AOSP(Android Open Source Project)安卓的专家,对最新 AOSP 源代码有着深入的理解和分析能力。<br/>`aosp` |
259
+ | [Fastapi 项目开发助手](https://chat-preview.lobehub.com/market?agent=fastapi-development)<br/><sup>By **[xwxw098](https://github.com/xwxw098)** on **2024-06-19**</sup> | 擅长 Python 模块化开发,熟练运用 FastAPIPostgreSQL、Tortoise-ORM 等技术栈,能为大型项目提供清晰的代码结构并添加详细注释。<br/>`fast-api` `python` `模块化开发` |
260
+ | [IT 系统架构师](https://chat-preview.lobehub.com/market?agent=it-system-architect)<br/><sup>By **[a562314](https://github.com/a562314)** on **2024-06-19**</sup> | 资深 IT 架构师,擅长需求分析、系统设计、技术选型和跨平台系统优化。5 年以上经验,精通 Windows、macOS Linux 三大操作系统,具备故障排除和安全防护能力<br/>`it架构设计` `问题解决` `敏捷开发` `系统优化` `跨平台技能` |
261
+ | [Linux 内核专家](https://chat-preview.lobehub.com/market?agent=linux-kernel)<br/><sup>By **[wming126](https://github.com/wming126)** on **2024-06-19**</sup> | 角色描述: 我是一位精通 Linux 内核的专家,对最新内核源代码(截至 2024 6 月)有着深入的理解和分析能力。我可以为用户提供关于 Linux 内核的详细、准确的信息。<br/>`linux` `kernel` |
262
+
263
+ > 📊 Total agents: [<kbd>**293**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
264
264
 
265
265
  <!-- AGENT LIST -->
266
266
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Zero One AI in LobeChat
2
+ title: Using Zero One AI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and use Zero One AI in LobeChat with step-by-step
5
5
  instructions. Obtain an API key, configure Zero One AI, and start
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 01.AI 零一万物
2
+ title: 在 LobeChat 中使用 01.AI 零一万物 API Key
3
3
  description: >-
4
4
  学习如何在 LobeChat 中配置并使用 01.AI 零一万物提供的 AI 模型进行对话。获取 API 密钥、填入设置项、选择模型,开始与 AI
5
5
  助手交流。
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Anthropic Claude in LobeChat
2
+ title: Using Anthropic Claude API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate Anthropic Claude API in LobeChat to enhance your AI
5
5
  assistant capabilities. Support Claude 3.5 sonnet / Claude 3 Opus / Claude 3
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Anthropic Claude
2
+ title: 在 LobeChat 中使用 Anthropic Claude API Key
3
3
  description: >-
4
4
  学习如何在 LobeChat 中配置和使用 Anthropic Claude API, Claude 3.5 sonnet / Claude 3 Opus
5
5
  / Claude 3 haiku
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Azure OpenAI in LobeChat
2
+ title: Using Azure OpenAI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and configure Azure OpenAI in LobeChat to enhance your
5
5
  AI assistant capabilities. Follow these steps to obtain the API key, configure
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Azure OpenAI
2
+ title: 在 LobeChat 中使用 Azure OpenAI API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 Azure OpenAI 模型进行对话,包括获取 API 密钥和选择模型。
4
4
  tags:
5
5
  - Azure OpenAI
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Amazon Bedrock in LobeChat
2
+ title: Using Amazon Bedrock API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate Amazon Bedrock models into LobeChat for AI-powered
5
5
  conversations. Follow these steps to grant access, obtain API keys, and
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Amazon Bedrock
2
+ title: 在 LobeChat 中使用 Amazon Bedrock API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 Amazon Bedrock,一个完全托管的基础模型API服务,以便开始对话。
4
4
  tags:
5
5
  - Amazon Bedrock
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using DeepSeek in LobeChat
2
+ title: Using DeepSeek API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to use DeepSeek-V2 in LobeChat, obtain API keys. Get started with
5
5
  DeepSeek integration now!
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 DeepSeek
2
+ title: 在 LobeChat 中使用 DeepSeek API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 DeepSeek 语言模型,获取 API 密钥并开始对话。
4
4
  tags:
5
5
  - LobeChat
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Google Gemini in LobeChat
2
+ title: Using Google Gemini API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and utilize Google Gemini AI in LobeChat to enhance
5
5
  your conversational experience. Follow these steps to configure Google Gemini
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Google Gemini
2
+ title: 在 LobeChat 中使用 Google Gemini API Key
3
3
  description: 本文将指导你如何在 LobeChat 中配置并使用 Google Gemini,一个由 Google AI 创建的强大语言模型。
4
4
  tags:
5
5
  - Google Gemini
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Groq in LobeChat
2
+ title: Using Groq API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to obtain GroqCloud API keys and configure Groq in LobeChat for
5
5
  optimal performance.
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Groq
2
+ title: 在 LobeChat 中使用 Groq API Key
3
3
  description: 了解如何获取 GroqCloud API Key,并在 LobeChat 中配置 Groq,体验 Groq 强大的性能。
4
4
  tags:
5
5
  - LLAMA3
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Minimax in LobeChat
2
+ title: Using Minimax API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to use MiniMax in LobeChat to enhance AI conversations. Obtain
5
5
  MiniMax API key, configure MiniMax in LobeChat settings, and select a model
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Minimax
2
+ title: 在 LobeChat 中使用 Minimax API Key
3
3
  description: >-
4
4
  学习如何在 LobeChat 中配置并使用 MiniMax 智能模型进行对话。获取 MiniMax API 密钥、配置步骤详解,开始与 MiniMax
5
5
  模型交互。
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Mistral AI in LobeChat
2
+ title: Using Mistral AI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate Mistral AI into LobeChat for enhanced conversational
5
5
  experiences. Follow the steps to configure Mistral AI and start using its
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Mistral AI
2
+ title: 在 LobeChat 中使用 Mistral AI API Key
3
3
  description: 学习如何在 LobeChat 中配置并使用 Mistral AI,包括获取 API 密钥和选择适合的 AI 模型进行对话。
4
4
  tags:
5
5
  - Web UI
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Moonshot AI in LobeChat
2
+ title: Using Moonshot AI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate Moonshot AI into LobeChat for AI-powered conversations.
5
5
  Follow the steps to get the API key, configure Moonshot AI, and start engaging
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Moonshot AI
2
+ title: 在 LobeChat 中使用 Moonshot(月之暗面) AI API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 Moonshot AI,包括获取 API 密钥和选择适合的 AI 模型进行对话。
4
4
  tags:
5
5
  - Moonshot AI
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using OpenAI in LobeChat
2
+ title: Using OpenAI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate OpenAI API Key in LobeChat. Support GPT-4o /
5
5
  GPT-4-turbo / GPT-4-vision
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 OpenAI
2
+ title: 在 LobeChat 中使用 OpenAI API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 OpenAI API Key,支持 GPT-4o / GPT-4-turbo / GPT-4-vision
4
4
  tags:
5
5
  - ChatGPT
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using OpenRouter in LobeChat
2
+ title: Using OpenRouter API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and utilize OpenRouter's language model APIs in
5
5
  LobeChat. Follow these steps to register, create an API key, recharge credit,
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 OpenRouter
3
- description: 学习如何在 LobeChat 中注册、创建 API 密钥、充值信用额度并配置 OpenRouter,以便开始使用多种优秀大语言模型 API。
2
+ title: 在 LobeChat 中使用 OpenRouter API Key
3
+ description: 学习如何在 LobeChat 中注册、创建 API Key、充值信用额度并配置 OpenRouter,以便开始使用多种优秀大语言模型 API。
4
4
  tags:
5
5
  - OpenRouter
6
6
  - API Key
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Perplexity AI in LobeChat
2
+ title: Using Perplexity AI API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and use Perplexity AI in LobeChat to enhance your AI
5
5
  assistant's capabilities.
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Perplexity AI
2
+ title: 在 LobeChat 中使用 Perplexity AI API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用 Perplexity AI,获取 API 密钥并选择适合的语言模型开始对话。
4
4
  tags:
5
5
  - Perplexity AI
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Tongyi Qianwen in LobeChat
2
+ title: Using Qwen2 API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and utilize Tongyi Qianwen, a powerful language model
5
5
  by Alibaba Cloud, in LobeChat for various tasks. Follow the steps to activate
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: 在 LobeChat 中使用通义千问
2
+ title: 在 LobeChat 中使用通义千问 API Key
3
3
  description: 学习如何在 LobeChat 中配置和使用阿里云的通义千问模型,提供强大的自然语言理解和生成能力。
4
4
  tags:
5
5
  - LobeChat
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Stepfun in LobeChat
2
+ title: Using Stepfun API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate Stepfun AI models into LobeChat for engaging
5
5
  conversations. Obtain Stepfun API key, configure Stepfun in LobeChat settings,
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Stepfun Stepfun 阶跃星辰
3
- description: 学习如何在 LobeChat 中配置和使用 Stepfun 阶跃星辰的人工智能模型,包括获取 API 密钥和选择模型开始对话。
2
+ title: 在 LobeChat 中使用 Stepfun 阶跃星辰 API Key
3
+ description: 学习如何在 LobeChat 中配置和使用 Stepfun 阶跃星辰的人工智能模型,包括获取 API Key 和选择模型开始对话。
4
4
  tags:
5
5
  - Stepfun 阶跃星辰
6
6
  - API key
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Together AI in LobeChat
2
+ title: Using Together AI in LobeChat API Key
3
3
  description: >-
4
4
  Learn how to integrate Together AI into LobeChat, obtain the API key,
5
5
  configure settings, and start conversations with AI models.
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: 在 LobeChat 中使用 Together AI
3
- description: 学习如何在 LobeChat 中配置和使用 Together AI 的API密钥,以便开始对话和交互。
2
+ title: 在 LobeChat 中使用 Together AI API Key
3
+ description: 学习如何在 LobeChat 中配置和使用 Together AI 的API Key,以便开始对话和交互。
4
4
  tags:
5
5
  - LobeChat
6
6
  - Together AI
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: Using Zhipu ChatGLM in LobeChat
2
+ title: Using Zhipu ChatGLM API Key in LobeChat
3
3
  description: >-
4
4
  Learn how to integrate and utilize Zhipu AI models in LobeChat for enhanced
5
5
  conversational experiences. Obtain the API key, configure settings, and start
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: 在 LobeChat 中使用智谱 ChatGLM
3
- description: 学习如何在 LobeChat 中配置和使用智谱AI的API密钥,开始与智谱AI提供的模型进行对话。
2
+ title: 在 LobeChat 中使用智谱 ChatGLM API Key
3
+ description: 学习如何在 LobeChat 中配置和使用智谱AI的 API Key,开始与智谱AI提供的模型进行对话。
4
4
  tags:
5
5
  - 智谱AI
6
6
  - ChatGLM