|
| 1 | +# Environment |
| 2 | +ARBITRIUM_ENV=development |
| 3 | + |
| 4 | +# LLM API Keys (for tournaments) |
| 5 | +# LiteLLM reads these environment variables automatically. |
| 6 | +# Only set the keys for providers you plan to use. |
| 7 | +# |
| 8 | +# Provider documentation: |
| 9 | +# OpenAI: https://platform.openai.com/api-keys |
| 10 | +# Anthropic: https://console.anthropic.com/settings/keys |
| 11 | +# Google AI: https://makersuite.google.com/app/apikey |
| 12 | +# xAI (Grok): https://console.x.ai/ |
| 13 | +# Mistral: https://console.mistral.ai/api-keys |
| 14 | +# Cohere: https://dashboard.cohere.com/api-keys |
| 15 | +# Groq: https://console.groq.com/keys |
| 16 | +# Together AI: https://api.together.xyz/settings/api-keys |
| 17 | +# Perplexity: https://www.perplexity.ai/settings/api |
| 18 | +# DeepSeek: https://platform.deepseek.com/api_keys |
| 19 | +# OpenRouter: https://openrouter.ai/keys |
| 20 | + |
| 21 | +# Core providers |
| 22 | +OPENAI_API_KEY=sk-... |
| 23 | +ANTHROPIC_API_KEY=sk-ant-... |
| 24 | +GOOGLE_API_KEY=AI... |
| 25 | +XAI_API_KEY=xai-... |
| 26 | + |
| 27 | +# Additional providers (uncomment as needed) |
| 28 | +# MISTRAL_API_KEY=... |
| 29 | +# COHERE_API_KEY=... |
| 30 | +# GROQ_API_KEY=gsk_... |
| 31 | +# TOGETHER_API_KEY=... |
| 32 | +# PERPLEXITY_API_KEY=pplx-... |
| 33 | +# DEEPSEEK_API_KEY=sk-... |
| 34 | +# OPENROUTER_API_KEY=sk-or-... |
| 35 | + |
| 36 | +# Cloud providers (require additional setup) |
| 37 | +# VERTEX_AI_API_KEY=... |
| 38 | +# AZURE_API_KEY=... |
| 39 | +# AZURE_API_BASE=https://your-resource.openai.azure.com |
| 40 | +# AZURE_API_VERSION=2024-02-01 |
| 41 | +# AWS_ACCESS_KEY_ID=... |
| 42 | +# AWS_SECRET_ACCESS_KEY=... |
| 43 | +# AWS_REGION_NAME=us-east-1 |
| 44 | + |
| 45 | +# LiteLLM Configuration |
| 46 | +LITELLM_LOG=INFO |
| 47 | + |
| 48 | +# Ollama Configuration |
| 49 | +# REQUIRED when using Ollama models (llama3, phi3, gemma3, qwen3) |
| 50 | +OLLAMA_BASE_URL=http://localhost:11434 |
0 commit comments