-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 818 Bytes
/
.env.example
File metadata and controls
29 lines (24 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# OpenRouter API Key (Required)
# Get your key from: https://openrouter.ai/
# Used for AI-powered code analysis and planning
OPENROUTER_API_KEY=sk-or-v1-xxxxx
# Exa API Key (Optional)
# Get your key from: https://exa.ai/
# Used for web search and code context features
EXA_API_KEY=your-exa-api-key
# Model Configuration (Optional)
# The AI model to use for planning
# Default: x-ai/grok-4-fast
# See README.md for recommended models
MODEL=x-ai/grok-4-fast
# Model Context Window (Optional)
# Maximum number of tokens the model can handle
# Default: 2000000 (2M tokens)
MODEL_CONTEXT_WINDOW=2000000
# Environment (Optional)
# Application environment: development or production
NODE_ENV=development
# Debug Mode (Optional)
# Enable detailed logging for troubleshooting
# Set to true to enable debug logs
DEBUG=true