find_events tool data for 2026 and 2027

This commit is contained in:
Steve Androulakis
2025-11-30 11:11:40 -08:00
parent 1bd69db1d0
commit 3180084e7c
3 changed files with 1168 additions and 36 deletions

View File

@@ -180,10 +180,9 @@ search_fixtures_tool = ToolDefinition(
find_events_tool = ToolDefinition(
name="FindEvents",
description="Find upcoming events to travel to a given city (e.g., 'Melbourne') and a date or month. "
description="Find upcoming events to travel to a given city (e.g., 'Melbourne') and a month. "
"It knows about events in Oceania only (e.g. major Australian and New Zealand cities). "
"It will search 1 month either side of the month provided. "
"Returns a list of events. ",
"Returns events that overlap with the specified month. ",
arguments=[
ToolArgument(
name="city",
@@ -193,7 +192,7 @@ find_events_tool = ToolDefinition(
ToolArgument(
name="month",
type="string",
description="The month to search for events (will search 1 month either side of the month provided)",
description="The month to search for events (e.g., 'April')",
),
],
)