Final_Assignment / tools /__init__.py
Harshana
add basic code
372720a
raw
history blame contribute delete
205 Bytes
# 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]