mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +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
10 lines
242 B
Python
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))
|