修改了nanobot,往Hermes agent的风格走,进度1/3

This commit is contained in:
2026-04-20 18:11:14 +08:00
parent cdfc222c9f
commit 36882a7d7b
261 changed files with 12659 additions and 604 deletions

View File

@ -0,0 +1,17 @@
"""Built-in Beaver tools."""
from .echo import EchoTool, echo_tool
from .memory import MemoryTool, memory_tool
from .skill_view import SkillViewTool, skill_view
from .session_search import SessionSearchTool, session_search
__all__ = [
"EchoTool",
"MemoryTool",
"SkillViewTool",
"SessionSearchTool",
"echo_tool",
"memory_tool",
"skill_view",
"session_search",
]