Files
ZY-Agent/frontend/src/content/zh/tutorials/first-conversation.mdx
T
2026-04-26 15:11:22 +08:00

51 lines
1.3 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: 本教程引导你在 DeerFlow 中完成第一次完整的 Agent 对话,从启动应用到与 Agent 进行实质性任务交互。
---
# 第一次对话
本教程引导你在 DeerFlow 中完成第一次完整的 Agent 对话,从启动应用到与 Agent 进行实质性任务交互。
## 前置条件
- DeerFlow 应用已运行(参见[快速上手](/docs/application/quick-start)
- 至少在 `config.yaml` 中配置了一个模型
## 步骤
### 1. 打开工作区
在浏览器中访问 [http://localhost:2026](http://localhost:2026),你将看到对话工作区。
### 2. 发送第一条消息
在输入框中输入问题,例如:
```
研究 2024 年三大最受欢迎的开源大语言模型框架,并对比它们的优缺点。
```
按回车发送。
### 3. 观察 Agent 的工作过程
你将看到 Agent 进入工作状态:
- 展开**思考步骤**查看它调用了哪些工具
- 观察网络搜索结果的流入
- 等待最终报告生成
### 4. 与结果互动
报告生成后,你可以:
- 要求对某部分进行详细说明
- 要求将报告导出为文件(Agent 会使用 `present_files` 工具)
- 要求基于研究结果创建图表
## 下一步
- [使用工具和技能](/docs/tutorials/use-tools-and-skills)
- [工作区使用](/docs/application/workspace-usage)