Auto-sync: 2026-04-18 12:03

This commit is contained in:
2026-04-18 12:03:11 +08:00
parent 1a82750f1c
commit 7d361490b2
85 changed files with 2857 additions and 7 deletions

26
wiki/concepts/Bot.md Normal file
View File

@@ -0,0 +1,26 @@
---
title: "Bot智能体"
type: concept
tags: [ai, 智能体, 对话]
---
## Description
Bot智能体在 Coze 平台中指对话型 AI 智能体,是最基础的智能体开发模式。用户通过自然语言与 Bot 对话Bot 根据预设的提示词和知识库生成回复。Bot 模式适合快速创建轻量级对话应用。
## Key Features
- **自然语言对话**:用户通过自然语言与 Bot 交互
- **提示词配置**:通过编写提示词定义 Bot 的行为和角色
- **知识库集成**:可挂载知识库实现 RAG检索增强生成
- **插件扩展**:支持调用外部插件扩展能力
- **对话历史**:支持多轮对话上下文记忆
## Use Cases
- 智能客服
- 问答助手
- 内容创作
- 教育辅导
## Related
- [[Coze扣子]] — Bot 所在的开发平台
- [[Coze Workflow]] — Coze 的另一种开发模式
- [[RAG]] — 检索增强生成技术