- 在 `src/agents/deep_agent` 中新增深度分析智能体模块,包含任务规划、深度知识搜索和分析能力。 - 引入 `deepagents` 库,创建深度智能体并实现复杂任务处理。 - 更新 `pyproject.toml` 以添加 `deepagents` 依赖。 - 修改 `context.py` 和 `graph.py`,为深度智能体提供专用上下文和工具支持。 - 更新文档以反映新功能和模块的集成。
23 lines
521 B
Python
23 lines
521 B
Python
"""Deep Agent - 深度分析智能体模块
|
|
|
|
基于 deepagents 库构建的深度分析智能体,具备以下特性:
|
|
- 任务规划和分解能力
|
|
- 深度知识搜索和分析
|
|
- 子智能体协作
|
|
- 文件系统和长期记忆
|
|
- 综合分析和报告生成
|
|
"""
|
|
|
|
from .context import DeepContext
|
|
from .graph import DeepAgent
|
|
|
|
__all__ = [
|
|
"DeepAgent",
|
|
"DeepContext",
|
|
]
|
|
|
|
# 模块元数据
|
|
__version__ = "1.0.0"
|
|
__author__ = "Yuxi-Know Team"
|
|
__description__ = "基于 create_deep_agent 的深度分析智能体"
|