| # LLM API Configuration | |
| # Copy this file to .env and fill in your actual values | |
| # API Key for LLM (OpenAI-compatible API) | |
| LLM_API_KEY=your-api-key-here | |
| # Base URL for LLM API (OpenAI-compatible endpoint) | |
| LLM_BASE_URL=https://api.openai.com/v1 | |
| # Default LLM Model | |
| LLM_MODEL=gpt-4 | |