| 1234567891011121314151617181920 |
- # LLM Configuration — any OpenAI-compatible API works
- # Option A: Groq (recommended — free tier, fast inference)
- # Get your key at: https://console.groq.com → API Keys
- LLM_API_KEY=your_groq_api_key_here
- LLM_BASE_URL=https://api.groq.com/openai/v1
- LLM_MODEL_ID=llama-3.3-70b-versatile
- # Option B: ModelScope / Qwen (free, 2000 calls/day)
- # LLM_API_KEY=your_modelscope_sdk_token
- # LLM_BASE_URL=https://api-inference.modelscope.cn/v1
- # LLM_MODEL_ID=Qwen/Qwen2.5-72B-Instruct
- # Option C: OpenAI directly
- # LLM_API_KEY=sk-...
- # LLM_BASE_URL=https://api.openai.com/v1
- # LLM_MODEL_ID=gpt-4o-mini
- # Optional: LLM request timeout in seconds (default: 60)
- # LLM_TIMEOUT=60
|