work on tests

This commit is contained in:
Joshua Smith
2025-04-10 09:38:13 -04:00
parent c18a40b502
commit ef45ca0451
8 changed files with 156 additions and 56 deletions

View File

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