Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,6 +6,10 @@ import pandas as pd
|
|
| 6 |
|
| 7 |
from agent import agent
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
# (Keep Constants as is)
|
| 10 |
# --- Constants ---
|
| 11 |
DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
|
|
|
| 6 |
|
| 7 |
from agent import agent
|
| 8 |
|
| 9 |
+
import os
|
| 10 |
+
print("Gemini_Key in env:", "Gemini_Key" in os.environ)
|
| 11 |
+
print("Value (shortened):", os.environ.get("Gemini_Key", "")[:8])
|
| 12 |
+
|
| 13 |
# (Keep Constants as is)
|
| 14 |
# --- Constants ---
|
| 15 |
DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|