Spike of football fixture lookup.

This commit is contained in:
Rob Holland
2025-02-03 17:34:42 +00:00
parent b125548844
commit 879abade05
6 changed files with 167 additions and 19 deletions

View File

@@ -65,3 +65,20 @@ create_invoice_tool = ToolDefinition(
),
],
)
find_fixtures_tool = ToolDefinition(
name="FindFixtures",
description="Find upcoming fixtures for a given team and month",
arguments=[
ToolArgument(
name="team",
type="string",
description="The name of the team to search for",
),
ToolArgument(
name="month",
type="string",
description="The month to search for fixtures",
),
],
)