Spaces:
Running on Zero
Running on Zero
Upload .env.example with huggingface_hub
Browse files- .env.example +28 -0
.env.example
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# === Required for free LLM calls (Scanner, Frontier, Preprocessor, Messaging) ===
|
| 2 |
+
GROQ_API_KEY=gsk_your_key_here
|
| 3 |
+
|
| 4 |
+
# Optional: change the Groq model (default: llama-3.1-8b-instant)
|
| 5 |
+
# GROQ_MODEL=llama-3.3-70b-versatile
|
| 6 |
+
|
| 7 |
+
# === Modal (OPTIONAL — only if you have GPU credits) ===
|
| 8 |
+
# Modal often gives only ~$1 free credits. Leave USE_MODAL_SPECIALIST=false for demo.
|
| 9 |
+
# Specialist Agent automatically uses Groq instead (free).
|
| 10 |
+
# MODAL_TOKEN_ID=ak_your_id_here
|
| 11 |
+
# MODAL_TOKEN_SECRET=as_your_secret_here
|
| 12 |
+
USE_MODAL_SPECIALIST=false
|
| 13 |
+
|
| 14 |
+
# === Required to build vector DB (Day 2) and for Modal pricer ===
|
| 15 |
+
# Sign up at https://huggingface.co — free
|
| 16 |
+
HF_TOKEN=hf_your_token_here
|
| 17 |
+
|
| 18 |
+
# === Optional: push notifications to your phone (free tier at pushover.net) ===
|
| 19 |
+
PUSHOVER_USER=u_your_user_key
|
| 20 |
+
PUSHOVER_TOKEN=a_your_app_token
|
| 21 |
+
|
| 22 |
+
# === Local dev: use Ollama instead of Groq for preprocessor ===
|
| 23 |
+
# PRICER_PREPROCESSOR_MODEL=ollama/llama3.2
|
| 24 |
+
|
| 25 |
+
# === Deployment (Hugging Face Spaces / Render) ===
|
| 26 |
+
GRADIO_SERVER_NAME=0.0.0.0
|
| 27 |
+
GRADIO_SERVER_PORT=7860
|
| 28 |
+
GRADIO_SHARE=false
|