.env.example 675 B

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