Files
ai-video-fullstack/docs/features.mdx
2026-08-04 15:27:39 +08:00

33 lines
1.4 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 模型资源。助手引用知识库后,需先解绑才能删除该知识库。
## 工具与历史
- 可复用工具分为 System、HTTP、Client 和 MCP结束对话属于 System 类别。
- HTTP 工具的 URL、请求头、参数和密钥独立管理。
- Prompt 助手和 Workflow Agent 节点可开启内置系统工具结束对话、更新状态、跳过本轮、请求人工接管Workflow 还提供确定性的 Update State 节点。
- 历史记录保留会话、通道、运行模式及消息序列,便于排查对话。