Spaces:
Running
Running
File size: 367 Bytes
3cf54d2 d1cc8ad 8322301 3cf54d2 d1cc8ad 8322301 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# config.py
import os
#from config.prompts import prompts
from config.models import models_modal
# Retrieve the Hugging Face token
api_token = os.getenv("HF_TOKEN")
# Debugging: Print prompt and model options
print("##### IMPORTING CONFIG #####")
#print("Prompt Options:", [p["alias"] for p in prompts])
print("Model Options:", [m["alias"] for m in models_modal])
|