Spaces:
Runtime error
Runtime error
Andreas Varvarigos commited on
Update src/litbench_pipeline.py
Browse files- src/litbench_pipeline.py +2 -0
src/litbench_pipeline.py
CHANGED
|
@@ -37,7 +37,9 @@ from huggingface_hub import login
|
|
| 37 |
# Load token from Hugging Face Secrets
|
| 38 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 39 |
# Login using the token (only needed if loading private models)
|
|
|
|
| 40 |
if HF_TOKEN:
|
|
|
|
| 41 |
login(HF_TOKEN)
|
| 42 |
|
| 43 |
# Function to determine the chatbot's first message based on user choices
|
|
|
|
| 37 |
# Load token from Hugging Face Secrets
|
| 38 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 39 |
# Login using the token (only needed if loading private models)
|
| 40 |
+
print("HF_TOKEN: ", HF_TOKEN)
|
| 41 |
if HF_TOKEN:
|
| 42 |
+
print("HERE???")
|
| 43 |
login(HF_TOKEN)
|
| 44 |
|
| 45 |
# Function to determine the chatbot's first message based on user choices
|