File size: 625 Bytes
7fcdb70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Backend Environment Variables
# FARA Model Configuration
FARA_MODEL_NAME=microsoft/Fara-7B
FARA_ENDPOINT_URL=https://your-workspace--fara-vllm-serve.modal.run/v1
FARA_API_KEY=not-needed
# Modal Proxy Auth Configuration
# These credentials are used for BOTH the vLLM endpoint AND trace storage
# Create a Proxy Auth Token at: https://modal.com/settings/proxy-auth-tokens
MODAL_TOKEN_ID=wk-xxxxxxxx
MODAL_TOKEN_SECRET=ws-xxxxxxxx
# Modal Trace Storage Endpoint URL
# Get the URL from `modal deploy backend/modal_fara_vllm.py`
MODAL_TRACE_STORAGE_URL=https://your-workspace--fara-vllm-store-trace.modal.run
|