voice-agent / src /app /services /agent /tools /__init__.py
Sbboss's picture
RAG, language updates
0b2d478
raw
history blame contribute delete
236 Bytes
"""Tool package; importing modules registers tools."""
from .registry import ToolRegistry, ToolSpec, registry
from . import time_tool # noqa: F401
from . import weather # noqa: F401
__all__ = ["ToolRegistry", "ToolSpec", "registry"]