mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 05:58:08 +01:00
9 lines
241 B
Python
9 lines
241 B
Python
from tools.search_flights import search_flights
|
|
import json
|
|
|
|
# Example usage
|
|
if __name__ == "__main__":
|
|
search_args = {"city": "Sydney", "month": "July"}
|
|
results = search_flights(search_args)
|
|
print(json.dumps(results, indent=2))
|