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']