AsyncRAG / config.py
Zubaish
Initial backend-only RAG (no PDFs)
b713a11
raw
history blame
251 Bytes
import os
HUGGINGFACEHUB_API_TOKEN = os.getenv("HUGGINGFACEHUB_API_TOKEN")
if not HUGGINGFACEHUB_API_TOKEN:
raise RuntimeError(
"HUGGINGFACEHUB_API_TOKEN is not set. "
"Set it as an environment variable or HF Space Secret."
)