# AI Provider Configuration
# Provider can be: openai, anthropic
AI_PROVIDER=openai
# API Keys
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_BASE_URL=https://api.openai.com/v1 # Optional: custom endpoint for OpenAI-compatible APIs
ANTHROPIC_API_KEY=your-anthropic-api-key-here
# Model Settings
# For OpenAI: gpt-4, gpt-4-turbo-preview, gpt-3.5-turbo
# For Anthropic: claude-3-opus-20240229, claude-3-sonnet-20240229
AI_MODEL=gpt-4
# Temperature (0.0-1.0, lower is more deterministic)
AI_TEMPERATURE=0.3
# Max tokens for response (optional - leave empty to use model default)
# AI_MAX_TOKENS=4000
# Proxy Configuration (optional)
# You can set a general proxy or provider-specific proxy
# Priority: OPENAI_PROXY > HTTPS_PROXY > HTTP_PROXY
# HTTP_PROXY=http://your-proxy:8080
# HTTPS_PROXY=http://your-proxy:8080
# OPENAI_PROXY=http://your-openai-specific-proxy:8080