Files
temporal-ai-agent/scripts/find_events_test.py
Steve Androulakis eb06cf5c8d Enhance Dev Experience and Code Quality (#41)
* Format codebase to satisfy linters

* fixing pylance and ruff-checked files

* contributing md, and type and formatting fixes

* setup file capitalization

* test fix
2025-06-01 08:54:59 -07:00

10 lines
242 B
Python

import json
from tools.search_flights import search_flights
# Example usage
if __name__ == "__main__":
search_args = {"city": "Sydney", "month": "July"}
results = search_flights(search_args)
print(json.dumps(results, indent=2))