File size: 368 Bytes
668ba52
 
6acdf38
668ba52
 
6acdf38
 
668ba52
 
6acdf38
1
2
3
4
5
6
7
8
9
10
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']