Skip to content

Commit 595cb2c

Browse files
committed
docs: update documentation and configuration files
- Update .vscode/settings.json spell check words list - Add new permission settings in docs/.claude/settings.local.json - Refactor sidebar navigation in docs/.vitepress/config.ts with detailed command categories - Update model platform introduction with latest date and API compatibility info - Revise OpenAI documentation with updated model support and configuration details - Update Qwen (Tongyi Qianwen) documentation with latest model information
1 parent d254fea commit 595cb2c

13 files changed

Lines changed: 1179 additions & 1388 deletions

File tree

.vscode/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"cSpell.words": [
3+
"chatluna",
34
"Dify",
5+
"Koishi",
46
"newbing",
57
"Ollama",
68
"onappear",
79
"Redisearch",
810
"Stackoverflow",
9-
"vectorstore",
10-
"chatluna"
11+
"vectorstore"
1112
],
1213
"typescript.tsdk": "node_modules/typescript/lib",
1314
"markdown.copyFiles.destination": {

docs/.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(mkdir:*)"
5+
],
6+
"deny": [],
7+
"ask": []
8+
}
9+
}

docs/.vitepress/config.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,15 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
169169
text: "配置",
170170
items: [
171171
{
172-
text: "常用指令和配置项",
172+
text: "常用指令与配置项",
173173
collapsed: true,
174174
items: [
175-
{ text: "用法", link: "/guide/useful-commands" },
175+
{ text: "对话", link: "/guide/useful-commands/chat" },
176+
{ text: "房间", link: "/guide/useful-commands/room" },
177+
{ text: "预设", link: "/guide/useful-commands/preset" },
178+
{ text: "模型", link: "/guide/useful-commands/model" },
179+
{ text: "长期记忆", link: "/guide/useful-commands/memory" },
180+
{ text: "系统", link: "/guide/useful-commands/system" },
176181
{
177182
text: "配置项",
178183
link: "/guide/useful-configurations",

docs/guide/configure-model-platform/introduction.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
ChatLuna 的模型平台是其核心功能之一。它为 ChatLuna 核心和各种模型之间提供了统一的接口 API,使得 ChatLuna 能够高效地集成多样化的模型。
44

5-
截至 2025 年 33 日,ChatLuna 在同类 Koishi 插件中原生支持的模型平台数量仍然保持领先地位。
5+
截至 2025 年 1012 日,ChatLuna 在同类 Koishi 插件中原生支持的模型平台数量仍然保持领先地位。
66

77
## 支持平台
88

@@ -22,10 +22,12 @@ ChatLuna 的模型平台是其核心功能之一。它为 ChatLuna 核心和各
2222
- [RWKV](rwkv.md)
2323
- [混元大模型](hunyuan.md)
2424

25-
对于 OpenAI 兼容的 API,可以使用以下适配器进行多开接入:
25+
对于 OpenAI 兼容 API(如 [One API](https://github.com/songquanpeng/one-api)[New API](https://github.com/QuantumNous/new-api),可以使用以下适配器进行多开接入:
2626

2727
- [OpenAI Like](openai-like.md)
2828

29+
大部分平台都支持 OpenAI 兼容 API。你可以优先使用此适配器尝试接入你使用模特平台。
30+
2931
## 使用
3032

3133
请参考各个模型适配器的具体安装和配置指南。

docs/guide/configure-model-platform/openai.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# OpenAI
22

3-
OpenAI 是目前顶尖的研究大语言模型相关的实验室,旗下同时开放 `gpt-40`,`gpt-4-32k`,`gpt-3.5-turbo` 等模型
3+
OpenAI 是全球顶尖的人工智能研究实验室,旗下同时开放 `gpt-5`,`gpt-4.1` 等多模态模型
44

5-
也是 ChatLuna 里最稳定的模型平台适配器
5+
我们支持对接 OpenAI 里大部分可用的聊天大语言模型或嵌入模型
66

7-
我们支持对接 OpenAI 里大部分可用的聊天大语言模型或嵌入模型。并通过 `v1/models` API 动态获取 OpenAI 的模型列表,支持大多数可用的聊天大语言模型和嵌入模型,无需用户手动输入或等待适配器更新。
7+
通过 `v1/models` API 动态获取 OpenAI 的模型列表,无需用户手动输入或等待适配器更新。
88

9-
OpenAI 模型适配器还支持 `plugin` 聊天模式,允许模型调用本地插件工具
9+
OpenAI 模型适配器还支持多模态和 Agent 模式。允许模型读取图片或者调用工具
1010

1111
## 安装
1212

@@ -16,9 +16,9 @@ OpenAI 模型适配器还支持 `plugin` 聊天模式,允许模型调用本地
1616

1717
## 配置
1818

19-
在配置之前,请先前往 [OpenAI](https://platform.openai.com/account/api-keys) 获取 API key。
19+
在配置之前,请先前往 [OpenAI](https://platform.openai.com/account/api-keys) 平台获取 API key。
2020

21-
如使用的是其他代理平台(转发接口,API-Adapter),还需额外获取 API host 地址。
21+
如使用的是其他代理平台(转发接口,API-Adapter),还需额外获取 API Base 地址。
2222

2323
::: tip 提示
2424
未来我们可能会录制官方教程,敬请期待。

docs/guide/configure-model-platform/qwen.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# 通义千问
22

3-
通义千问,是由阿里云推出的大语言模型,旗下同时开放 `qwen-turbo`,`qwen-plus` 等模型。
3+
通义千问,是由阿里云推出的大语言模型,旗下同时开放 `qwen-3`等模型。
44

55
我们支持对接通义千问里大部分可用的聊天大语言模型或嵌入模型。
66

7-
由于 API 限制,我们无法获取到通义千问的最新模型列表,所以当通义千问发布新模型时,我们滞后一段时间才会更新模型列表。
7+
由于 API 限制,我们无法获取到通义千问的最新模型列表。
8+
9+
当通义千问发布新模型时,我们的模型列表会滞后一段时间更新。
810

911
## 安装
1012

0 commit comments

Comments
 (0)