Files
ai-video-fullstack/docs/features.mdx
Xin Wang d5378b1ec9 Add documentation for AI 视频助手 including configuration, features, integrations, and quickstart guide
- Create a new JSON schema file for documentation settings.
- Add core features documentation detailing assistant configuration and model integration.
- Include an index page introducing the AI 视频助手 and its platform components.
- Document integration methods for model services and external agents.
- Provide a quickstart guide for setting up the local development environment using Docker.
- Add light and dark logo SVG files for branding purposes.
2026-07-10 22:54:30 +08:00

32 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 核心功能
description: 项目的主要能力与配置关系。
icon: bot
---
# 核心功能
## 助手配置
助手是运行时入口,支持提示词、工作流和外部托管三类大脑:
| 类型 | 用途 |
| --- | --- |
| `prompt` | 用提示词驱动的基础对话,可绑定工具。 |
| `workflow` | 用节点图编排对话流程。 |
| `dify` / `fastgpt` / `opencode` | 将对话处理交给外部 Agent 服务。 |
其中 `prompt` 和 `workflow` 支持 `pipeline` 与 `realtime`;外部托管 Agent 仅支持 `pipeline`。
## 模型与知识库
模型资源按具体协议注册,而不是按厂商名称猜测。当前支持 OpenAI 兼容的 LLM、ASR、TTS、Embedding、Realtime也支持讯飞 ASR/TTS/SuperTTS、StepFun Realtime以及 Dify、FastGPT、OpenCode Agent。
知识库可绑定一个 Embedding 模型资源。助手引用知识库后,需先解绑才能删除该知识库。
## 工具与历史
- 可复用工具支持结束通话和 HTTP 请求两种类型。
- HTTP 工具的 URL、请求头、参数和密钥独立管理。
- 历史记录保留会话、通道、运行模式及消息序列,便于排查对话。