Spaces:
Sleeping
Sleeping
File size: 205 Bytes
372720a |
1 2 3 4 5 6 7 8 |
# tools/__init__.py
# Automatically gather all @tool-decorated tools for registration
from .math_tools import add, multiply
from .search_tools import wiki_search
ALL_TOOLS = [add, multiply, wiki_search]
|