- Included a new JavaScript file for Mermaid configuration to ensure consistent diagram sizing across documentation. - Enhanced architecture documentation to reflect the updated pipeline engine structure, including VAD, ASR, TD, LLM, and TTS components. - Updated various sections to clarify the integration of external services and tools within the architecture. - Improved styling for Mermaid diagrams to enhance visual consistency and usability.
167 lines
4.5 KiB
YAML
167 lines
4.5 KiB
YAML
site_name: "Realtime Agent Studio"
|
|
site_description: "构建实时交互音视频智能体的开源工作平台"
|
|
site_url: "https://your-org.github.io/AI-VideoAssistant"
|
|
copyright: "Copyright © 2025 RAS Team"
|
|
site_author: "RAS Team"
|
|
|
|
docs_dir: "content"
|
|
site_dir: "site"
|
|
|
|
nav:
|
|
- 首页: index.md
|
|
- 产品概览:
|
|
- 概述: overview/index.md
|
|
- 系统架构: overview/architecture.md
|
|
- 快速开始:
|
|
- 5 分钟入门: quickstart/index.md
|
|
- 资源库配置: quickstart/dashboard.md
|
|
- 核心概念:
|
|
- 概述: concepts/index.md
|
|
- 助手详解: concepts/assistants.md
|
|
- 引擎架构: concepts/engines.md
|
|
- 安装部署:
|
|
- 概述: getting-started/index.md
|
|
- 环境要求: getting-started/requirements.md
|
|
- 配置说明: getting-started/configuration.md
|
|
- 部署概览: deployment/index.md
|
|
- Docker 部署: deployment/docker.md
|
|
- 助手管理:
|
|
- 创建助手:
|
|
- 小助手:
|
|
- 配置选项: assistants/configuration.md
|
|
- 提示词指南: assistants/prompts.md
|
|
- 测试调试: assistants/testing.md
|
|
- 工作流:
|
|
- 配置选项: assistants/workflow-configuration.md
|
|
- 组件库:
|
|
- 模型接入: customization/models.md
|
|
- 语音识别: customization/asr.md
|
|
- 语音生成: customization/tts.md
|
|
- 知识库: customization/knowledge-base.md
|
|
- 工具与插件: customization/tools.md
|
|
- 数据分析:
|
|
- 仪表盘: analysis/dashboard.md
|
|
- 历史记录: analysis/history.md
|
|
- 效果评估: analysis/evaluation.md
|
|
- 自动化测试: analysis/autotest.md
|
|
- API 参考:
|
|
- 概述: api-reference/index.md
|
|
- WebSocket 协议: api-reference/websocket.md
|
|
- 错误码: api-reference/errors.md
|
|
- 资源:
|
|
- 常见问题: resources/faq.md
|
|
- 故障排查: resources/troubleshooting.md
|
|
- 更新日志: changelog.md
|
|
- 路线图: roadmap.md
|
|
|
|
theme:
|
|
name: material
|
|
language: zh
|
|
custom_dir: overrides
|
|
icon:
|
|
logo: material/robot-outline
|
|
font:
|
|
text: Inter
|
|
code: JetBrains Mono
|
|
palette:
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: 切换到深色模式
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: 切换到浅色模式
|
|
features:
|
|
- navigation.instant
|
|
- navigation.instant.prefetch
|
|
- navigation.tracking
|
|
- navigation.tabs
|
|
- navigation.tabs.sticky
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- navigation.path
|
|
- navigation.top
|
|
- navigation.footer
|
|
- toc.follow
|
|
- search.suggest
|
|
- search.highlight
|
|
- search.share
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
- content.tabs.link
|
|
markdown_extensions:
|
|
- abbr
|
|
- admonition
|
|
- attr_list
|
|
- def_list
|
|
- footnotes
|
|
- md_in_html
|
|
- tables
|
|
- toc:
|
|
permalink: true
|
|
toc_depth: 3
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.betterem:
|
|
smart_enable: all
|
|
- pymdownx.caret
|
|
- pymdownx.details
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.keys
|
|
- pymdownx.magiclink:
|
|
repo_url_shorthand: true
|
|
user: your-org
|
|
repo: AI-VideoAssistant
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.tilde
|
|
|
|
plugins:
|
|
- search:
|
|
lang: zh
|
|
separator: '[\s\-\.]+'
|
|
- minify:
|
|
minify_html: true
|
|
|
|
extra:
|
|
# version.provider: mike — only enable when deploying with mike (versions.json is generated on deploy)
|
|
social:
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/your-org/AI-VideoAssistant
|
|
name: GitHub
|
|
generator: false
|
|
analytics:
|
|
provider: google
|
|
property: G-XXXXXXXXXX
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
extra_javascript:
|
|
- javascripts/mermaid.mjs
|
|
- javascripts/extra.js
|