File size: 471 Bytes
7b6b271
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .stormglass_tool import create_stormglass_tool
from .marine_data_tool import OpenMeteoMarineAPI  # not a tool, just used by fallback
from .location_tool import create_location_tool, create_distance_tool
from .spot_finder_tool import create_spot_finder_tool
from .llm_agent_tool import create_llm_agent_tool

TOOLS = [
    create_spot_finder_tool(),
    create_llm_agent_tool(),
    create_stormglass_tool(),
    create_location_tool(),
    create_distance_tool(),
]