Alejandro Ardila
Fixed runtime errors.
6acdf38
Raw
History Blame Contribute Delete
368 Bytes
from .math_tools import math_tools
from .web_tools import web_tools
from .coding_tools import code_agent
# Consolidate all tools into a single exportable array
coding_tools = [code_agent]
tools = web_tools + math_tools + coding_tools
# For backward compatibility, also export individual tool categories
__all__ = ['tools', 'math_tools', 'web_tools', 'coding_tools']