File size: 293 Bytes
505aa09 | 1 2 3 4 5 6 7 8 9 10 11 12 | # 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
|