Files
Agents/agents/__init__.py
nelson f5e8de559e refactor: 精简agent代码,移除冗余的main入口,添加API文档和note_agent
- root_agent/note_agent: 移除main()函数及不再需要的import(asyncio/Runner/SessionService/types)
- root_agent: 更新agent名称为huiyu_agent,优化instruction
- agents/__init__.py: 添加root_agent导出,供adk web/api_server注册
- 新增 API_DOC.md: 完整的API接口文档,供外部项目集成参考
- 新增 note_agent: 多模态笔记助手agent
2026-04-07 22:15:14 +08:00

11 lines
219 B
Python
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.
"""
Agent 模块
每个 Agent 是一个独立的子目录,包含 agent.py 和 __init__.py。
"""
# 导出所有 Agent供 adk web 服务注册
from .root_agent import agent as root_agent
__all__ = ["root_agent"]