works a lot better with 4o!

This commit is contained in:
Steve Androulakis
2025-01-03 15:05:27 -08:00
parent 20d375b4ea
commit f5cf7286a2
16 changed files with 365 additions and 119 deletions

View File

@@ -1,17 +1,17 @@
def find_events(args: dict) -> dict:
# Example: continent="Oceania", month="April"
continent = args.get("continent")
region = args.get("region")
month = args.get("month")
print(f"[FindEvents] Searching events in {continent} for {month} ...")
print(f"[FindEvents] Searching events in {region} for {month} ...")
# Stub result
return {
"eventsFound": [
"events": [
{
"city": "Melbourne",
"eventName": "Melbourne International Comedy Festival",
"dates": "2025-03-26 to 2025-04-20",
"dateFrom": "2025-03-26",
"dateTo": "2025-04-20",
},
],
"status": "found-events",
]
}