Implement core agent tooling infrastructure (chat, knowledge search) and update tool registration

This commit is contained in:
2026-06-15 15:03:22 +02:00
parent 0c04d5bf7d
commit 97366bb8e0
4 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from .chat import register_chat_tools
from .knowledge import register_knowledge_tools
from .saving import register_saving_tools
from .vision import register_vision_tools
from .web import register_web_tools
def register_native_tools(registry) -> None:
register_chat_tools(registry)
register_knowledge_tools(registry)
register_web_tools(registry)
register_vision_tools(registry)
register_saving_tools(registry)