remove hardcoded FlightAware AeroAPI key from flights.py

https://claude.ai/code/session_01H5wj3VH1Jh28kzepEwdDCx
This commit is contained in:
Claude 2026-02-25 21:05:46 +00:00
parent d0dd930080
commit 699d2eaa06
No known key found for this signature in database

View file

@ -28,7 +28,7 @@ EXTRACTION_MODEL = "openai/gpt-4o-mini"
# FlightAware AeroAPI configuration # FlightAware AeroAPI configuration
AEROAPI_BASE_URL = "https://aeroapi.flightaware.com/aeroapi" AEROAPI_BASE_URL = "https://aeroapi.flightaware.com/aeroapi"
AEROAPI_KEY = os.getenv("AEROAPI_KEY", "ESVFX7TJLxB7OTuayUv0zTQBryA3tOPr") AEROAPI_KEY = os.getenv("AEROAPI_KEY")
# HTTP client for API calls # HTTP client for API calls
http_client = httpx.AsyncClient(timeout=30.0) http_client = httpx.AsyncClient(timeout=30.0)