mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 22:18:09 +01:00
* Format codebase to satisfy linters * fixing pylance and ruff-checked files * contributing md, and type and formatting fixes * setup file capitalization * test fix
9 lines
266 B
Python
9 lines
266 B
Python
import json
|
|
|
|
from tools.search_flights import search_flights
|
|
|
|
if __name__ == "__main__":
|
|
# Suppose user typed "new" for New York, "lon" for London
|
|
flights = search_flights("London", "JFK", "2025-01-15", "2025-01-23")
|
|
print(json.dumps(flights, indent=2))
|