Spaces:
Runtime error
Runtime error
File size: 621 Bytes
10aae39 | 1 2 3 4 5 6 7 8 9 10 11 12 | # ─── Hugging Face Inference API ───────────────────────────────
# Token from https://huggingface.co/settings/tokens
HF_API_TOKEN=your_hf_token_here
HF_MODEL=mistralai/Mistral-7B-Instruct-v0.3
# ─── Ollama Local Backend ─────────────────────────────────────
# Model must be pulled locally (e.g., `ollama pull llama2`)
OLLAMA_MODEL=llama2
# ─── OpenAI (optional, disabled by default) ───────────────────
# OPENAI_API_KEY=sk-...
|