Files
fulloch/tools/__init__.py
T
Liam PettigrewandClaude Opus 4.5 464d049433 init
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 17:06:44 +11:00

37 lines
834 B
Python
Executable File

"""
Tools package for the voice assistant.
This package contains all the tools that can be used by the voice assistant.
All tools are automatically registered with the tool registry when this
package is imported.
"""
# Import all tools to ensure they are registered with the tool registry
from . import spotify
from . import lighting
from . import weather_time
from . import google_calendar
from . import airtouch
from . import thinq
from . import webos
from . import search_web
from . import pioneer_avr
from . import home_assistant
# Import the tool registry
from .tool_registry import tool_registry, tool
__all__ = [
'tool_registry',
'tool',
'spotify',
'lighting',
'weather_time',
'google_calendar',
'airtouch',
'thinq',
'webos',
'search_web',
'pioneer_avr',
'home_assistant'
]