Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,11 +7,12 @@ from streamlit_lottie import st_lottie
|
|
| 7 |
from timezonefinder import TimezoneFinder
|
| 8 |
import pytz
|
| 9 |
from streamlit_js_eval import get_geolocation
|
|
|
|
| 10 |
|
| 11 |
# ---------------------------
|
| 12 |
# API Key
|
| 13 |
# ---------------------------
|
| 14 |
-
GROQ_API_KEY = "
|
| 15 |
|
| 16 |
# ---------------------------
|
| 17 |
# Rescue numbers dictionary
|
|
|
|
| 7 |
from timezonefinder import TimezoneFinder
|
| 8 |
import pytz
|
| 9 |
from streamlit_js_eval import get_geolocation
|
| 10 |
+
import os
|
| 11 |
|
| 12 |
# ---------------------------
|
| 13 |
# API Key
|
| 14 |
# ---------------------------
|
| 15 |
+
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
| 16 |
|
| 17 |
# ---------------------------
|
| 18 |
# Rescue numbers dictionary
|