Implement core agent tooling infrastructure (chat, knowledge search) and update tool registration
This commit is contained in:
13
backend/agent/tools/__init__.py
Normal file
13
backend/agent/tools/__init__.py
Normal 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)
|
||||
Reference in New Issue
Block a user