Split Mintlify docs into user and developer sections.

Organize product guides under docs/user and setup/integration under docs/developer, with tabbed navigation for clearer audience targeting.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Xin Wang
2026-08-07 11:09:10 +08:00
parent 56a32e81ca
commit 95e04d8c94
6 changed files with 50 additions and 22 deletions

View File

@@ -43,14 +43,28 @@
}
},
"navigation": {
"groups": [
"tabs": [
{
"group": "开始使用",
"pages": ["index", "quickstart"]
"tab": "首页",
"pages": ["index"]
},
{
"group": "产品与对接",
"pages": ["features", "integrations"]
"tab": "用户文档",
"groups": [
{
"group": "产品",
"pages": ["user/overview", "user/features"]
}
]
},
{
"tab": "开发者文档",
"groups": [
{
"group": "开始与对接",
"pages": ["developer/quickstart", "developer/integrations"]
}
]
}
]
}

View File

@@ -1,26 +1,18 @@
---
title: AI 视频助手
description: 面向实时语音交互的助手管理与集成平台
icon: video
title: 文档首页
description: 按读者区分的用户文档与开发者文档入口
icon: book-open
---
# AI 视频助手
# 文档首页
在一个界面中配置模型、知识库、工具和助手,并通过 WebRTC 或 WebSocket 接入实时语音对话。
本站点按读者分成两套文档:
<CardGroup cols={2}>
<Card title="快速开始" icon="rocket" color="#3a4a6b" href="/quickstart">
本地启动服务并完成首次助手配置
<Card title="用户文档" icon="users" color="#3a4a6b" href="/user/overview">
产品能力与配置关系,适合运营与配置人员
</Card>
<Card title="对接说明" icon="plug" color="#3a4a6b" href="/integrations">
了解模型、外部 Agent 与语音通道的接入方式
<Card title="开发者文档" icon="code" color="#3a4a6b" href="/developer/quickstart">
本地启动、模型对接与语音通道,适合开发与集成
</Card>
</CardGroup>
## 平台组成
- **助手**:定义提示词、运行模式、模型绑定及可选工作流。
- **组件库**:统一维护模型资源、知识库和可复用工具。
- **语音引擎**Pipecat 管线支持浏览器 WebRTC 与裸 WebSocket 音频流。
> 凭证只保存在模型资源或助手的服务端配置中;接口返回会自动打码。

22
docs/user/overview.mdx Normal file
View File

@@ -0,0 +1,22 @@
---
title: 产品概览
description: 面向实时语音交互的助手管理与集成平台。
icon: video
---
# 产品概览
在一个界面中配置模型、知识库、工具和助手,并通过 WebRTC 或 WebSocket 接入实时语音对话。
## 平台组成
- **助手**:定义提示词、运行模式、模型绑定及可选工作流。
- **组件库**:统一维护模型资源、知识库和可复用工具。
- **语音引擎**Pipecat 管线支持浏览器 WebRTC 与裸 WebSocket 音频流。
> 凭证只保存在模型资源或助手的服务端配置中;接口返回会自动打码。
## 下一步
- [核心功能](/user/features):了解助手类型、模型、知识库与工具。
- 本地启动与对接细节见 [开发者文档](/developer/quickstart)。