-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env_example
More file actions
50 lines (47 loc) · 4.11 KB
/
Copy path.env_example
File metadata and controls
50 lines (47 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
LLM_SERVICE_ENDPOINT="https://lite-llm.mymaas.net"
LLM_SERVICE_API_KEY="<Insert_LLM_SERVICE_API_KEY_here>"
LLM_SERVICE_PLANNING_MODEL_NAME="openai/vertex-claude-4-5-sonnet"
LLM_SERVICE_GENERAL_MODEL_NAME="openai/vertex-claude-4-5-sonnet"
NAMESPACE="faa_workshop/"
SOLACE_BROKER_URL="ws://localhost:8008"
SOLACE_BROKER_VPN="default"
SOLACE_BROKER_USERNAME="default"
SOLACE_BROKER_PASSWORD="default"
SOLACE_DEV_MODE="false"
SESSION_SECRET_KEY="asd"
FASTAPI_HOST="127.0.0.1"
FASTAPI_PORT="8000"
FASTAPI_HTTPS_PORT="8443"
SSL_KEYFILE=""
SSL_CERTFILE=""
SSL_KEYFILE_PASSWORD=""
ENABLE_EMBED_RESOLUTION="True"
LOGGING_CONFIG_PATH="configs/logging_config.yaml"
S3_BUCKET_NAME=""
S3_ENDPOINT_URL=""
S3_REGION="us-east-1"
PLATFORM_API_HOST="127.0.0.1"
PLATFORM_API_PORT="8001"
PLATFORM_SERVICE_URL="http://127.0.0.1:8001"
# Disable authentication for development; configure an external auth service for production use
SAM_AUTHORIZATION_CONFIG='{"authorization_service": {"type": "none"}}'
# Databse details
FLIGHT_DATA_MONGO_HOST="ec2-18-222-192-72.us-east-2.compute.amazonaws.com"
FLIGHT_DATA_MONGO_PORT="27017"
FLIGHT_DATA_MONGO_USER="sam"
FLIGHT_DATA_MONGO_PASSWORD="faaistheb3st"
FLIGHT_DATA_MONGO_DB="FAAData"
FLIGHT_DATA_DB_PURPOSE="Stores real-time FAA SWIM (System Wide Information Management) NAS flight operations data sourced from SFDPS (SWIM Flight Data Publication Service) and STDDS SMES (Surface Movement Event Service). Supports en-route traffic situational awareness, traffic flow management, airline operations, and airport surface monitoring across the National Airspace System."
FLIGHT_DATA_DB_DESCRIPTION="Contains three collections: (1) FDPSFlightPlan — SFDPS/ERAM-derived en-route flight plan messages (FH/AH/DH message types) per flight including aircraft identification (callsign), GUFI, ICAO aircraft type, departure/arrival airports with actual and estimated runway times, assigned altitude, requested airspeed (knots), NAS route string, flight status (ACTIVE/PROPOSED/COMPLETED/CANCELLED/DROPPED), and controlling ARTCC center; (2) FDPSPosition — SFDPS/ERAM position update messages (TH/HP message types) with real-time en-route surveillance lat/lon, altitude (feet MSL), actual speed (knots), and controlling sector/ARTCC; (3) STDDSPosition — STDDS SMES SurfaceMovementEventMessages derived from ASDE-X/ASSC sensor data at 35+ major US airports, including callsign, aircraft type, ICAO airport, surface event type (spotout/spotin/runwayin/runwayout), runway identifier, surface status, lat/lon position, and enhanced GUFI/departure/destination linkage to SFDPS. All collections include a top-level UTC timestamp field."
# NAS Adaptation Database details
NAS_ADAPTATION_MONGO_DB="NAS_References"
NAS_ADAPTATION_DB_PURPOSE="Stores static FAA NAS adaptation reference data sourced from the FAA National Airspace System Resource (NASR) aeronautical dataset, governed by the 28-day AIRAC (Aeronautical Information Regulation and Control) publication cycle. Provides authoritative aeronautical reference data used to resolve named fixes, Fix-Radial-Distance specifications, charting associations, and schema metadata in SFDPS ERFDP en-route flight plan route strings and ERAM NAS adaptation processing across the National Airspace System."
NAS_ADAPTATION_DB_DESCRIPTION="Stores static FAA NAS adaptation reference records organized across multiple collections covering aeronautical subjects such as named fixes, waypoints, intersections, chart mappings, NAVAID relationships, and associated schema metadata. Records are keyed by domain-specific identifiers (e.g., FIX_ID) and carry attributes such as WGS-84 coordinates, ICAO region, US state, ARTCC jurisdiction, fix use codes, special-use flags, chart categories (ENROUTE HIGH/LOW, STAR, IAP, CONTROLLER HIGH/LOW), and Fix-Radial-Distance (FRD) relationships to ground-based NAVAIDs. Query available collections dynamically before assuming scope."
# RAG Database details
QDRANT_URL="<Insert_QDRANT_URL_here>"
QDRANT_API_KEY="<Insert_QDRANT_API_KEY_here>"
QDRANT_COLLECTION="faa-sop"
QDRANT_EMBEDDING_DIMENSION=1536
OPENAI_EMBEDDING_MODEL="text-embedding-ada-002"
DOCUMENTS_PATH="sop"
EMBEDDING_MODEL_NAME="openai/text-embedding-ada-002"