Skip to content

Commit 9dd9bd5

Browse files
committed
update
1 parent 9ddeda4 commit 9dd9bd5

3 files changed

Lines changed: 754 additions & 0 deletions

File tree

hello_agents/tools/builtin/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- CalculatorTool: 数学计算工具
66
- MemoryTool: 记忆工具
77
- RAGTool: 检索增强生成工具
8+
- NoteTool: 结构化笔记工具(第9章)
9+
- TerminalTool: 命令行工具(第9章)
810
- MCPTool: MCP 协议工具(第10章 - 基于 mcp v1.15.0)
911
- A2ATool: A2A 协议工具(第10章 - 基于 python-a2a v0.5.10)
1012
- ANPTool: ANP 协议工具(第10章 - 基于 agent-connect v0.3.7)
@@ -18,6 +20,8 @@
1820
from .calculator import CalculatorTool
1921
from .memory_tool import MemoryTool
2022
from .rag_tool import RAGTool
23+
from .note_tool import NoteTool
24+
from .terminal_tool import TerminalTool
2125
from .protocol_tools import MCPTool, A2ATool, ANPTool
2226
from .bfcl_evaluation_tool import BFCLEvaluationTool
2327
from .gaia_evaluation_tool import GAIAEvaluationTool
@@ -29,6 +33,8 @@
2933
"CalculatorTool",
3034
"MemoryTool",
3135
"RAGTool",
36+
"NoteTool",
37+
"TerminalTool",
3238
"MCPTool",
3339
"A2ATool",
3440
"ANPTool",

0 commit comments

Comments
 (0)