refactor: 重构目录结构,扁平化agent布局

- 将 agents/root_agent、agents/note_agent 移至项目根目录
- 将 base/ 重命名为 agent_base/,避免被ADK误识别为agent
- 移除所有 __init__.py 中的 sys.path.insert hack
- root_agent 添加 note_agent 作为子智能体(sub_agents)
- 更新所有 import 路径
- 更新 README.md 和 API_DOC.md
This commit is contained in:
2026-04-08 02:46:15 +08:00
parent f5e8de559e
commit 7f3176efc7
11 changed files with 102 additions and 111 deletions

5
agent_base/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""
基础工具模块
存放与模型、配置、工具等相关的底层工具类和函数。
"""