/
/
/
Ansible role that deployes services on my runner machine
1# ==============================================================================
2# LITELLM ENVIRONMENT CONFIGURATION
3# Model routing is handled by config.yaml, this file covers runtime settings
4# ==============================================================================
5
6# Logging
7LOG_LEVEL={{ llm_stack_litellm_log_level }}
8
9# Ollama connection (used by model discovery)
10OLLAMA_API_BASE=http://ollama:11434
11OLLAMA_NUM_GPUS=1
12
13# Security & Access
14CORS_ORIGINS=*
15ALLOWED_IPS=*
16
17# Rate Limiting
18RATE_LIMIT_ENABLED=true
19RATE_LIMIT_REQUESTS_PER_MINUTE=60
20RATE_LIMIT_REQUESTS_PER_HOUR=1000
21