Upload production/.env.example
Browse files- production/.env.example +27 -0
production/.env.example
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
REDIS_URL=redis://localhost:6379
|
| 2 |
+
DATABASE_URL=postgresql://ml_intern:ml_intern@localhost:5432/ml_intern
|
| 3 |
+
PORT=8000
|
| 4 |
+
WORKERS=4
|
| 5 |
+
MAX_CONCURRENT_REQUESTS=200
|
| 6 |
+
DEFAULT_RPM_LIMIT=40
|
| 7 |
+
REQUEST_TIMEOUT=120
|
| 8 |
+
CACHE_TTL_SECONDS=300
|
| 9 |
+
BUDGET_USD_PER_SESSION=10.0
|
| 10 |
+
CIRCUIT_BREAKER_FAILURE_THRESHOLD=5
|
| 11 |
+
CIRCUIT_BREAKER_RECOVERY_TIMEOUT=60
|
| 12 |
+
LOG_LEVEL=INFO
|
| 13 |
+
HF_TOKEN=hf_xxxxxxxx
|
| 14 |
+
ANTHROPIC_API_KEY=sk-ant-api03-xxxxxxxx
|
| 15 |
+
OPENAI_API_KEY=sk-proj-xxxxxxxx
|
| 16 |
+
GROQ_API_KEY=gsk_xxxxxxxx
|
| 17 |
+
NVIDIA_API_KEY=nvapi-xxxxxxxx
|
| 18 |
+
LLAMACPP_API_BASE=http://localhost:8080/v1
|
| 19 |
+
LMSTUDIO_API_BASE=http://localhost:1234/v1
|
| 20 |
+
MLX_API_BASE=http://localhost:8000/v1
|
| 21 |
+
NIM_API_BASE=http://localhost:8000/v1
|
| 22 |
+
OLLAMA_API_BASE=http://localhost:11434/v1
|
| 23 |
+
VLLM_API_BASE=http://localhost:8000/v1
|
| 24 |
+
TGI_API_BASE=http://localhost:8080/v1
|
| 25 |
+
LOCAL_API_BASE=http://localhost:8000/v1
|
| 26 |
+
GRAFANA_PASSWORD=admin
|
| 27 |
+
PGADMIN_PASSWORD=admin
|