Update backend/config.py
Browse files- backend/config.py +2 -3
backend/config.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
# Groq API key
|
| 6 |
-
GROQ_API_KEY = ""
|
| 7 |
# AI model configuration
|
| 8 |
AI_MODEL = "allam-2-7b"
|
| 9 |
JUDGE_MODEL = "llama-3.3-70b-versatile"
|
|
@@ -21,5 +21,4 @@ EVAC_SPEED_KMH = 40.0
|
|
| 21 |
MIN_ETA_MINUTES = 3
|
| 22 |
|
| 23 |
# OpenWeather API key for fire prediction / weather integration
|
| 24 |
-
OPENWEATHER_API_KEY = ""
|
| 25 |
-
|
|
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
# Groq API key
|
| 6 |
+
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
| 7 |
# AI model configuration
|
| 8 |
AI_MODEL = "allam-2-7b"
|
| 9 |
JUDGE_MODEL = "llama-3.3-70b-versatile"
|
|
|
|
| 21 |
MIN_ETA_MINUTES = 3
|
| 22 |
|
| 23 |
# OpenWeather API key for fire prediction / weather integration
|
| 24 |
+
OPENWEATHER_API_KEY = os.getenv("OPENWEATHER_API_KEY")
|
|
|