-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (23 loc) · 904 Bytes
/
env.example
File metadata and controls
28 lines (23 loc) · 904 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
# OpenAI API (for orchestrator and code generator)
# Set your base_url directly, no modification will be made
OPENAI_API_KEY=sk-your_api_key_here
OPENAI_API_BASE=http://your-endpoint:port/v1
OPENAI_MODEL=gpt-4o-mini
# Anthropic API (for analyzer)
# Can use OpenAI-compatible endpoint or official Anthropic API
ANTHROPIC_API_KEY=your_anthropic_api_key_here
ANTHROPIC_BASE_URL=https://api.anthropic.com
ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
# Vision Model API (for visual analysis)
# Uses OPENAI_API_BASE by default, or set VISION_API_BASE separately
VISION_API_KEY=sk-your_api_key_here
VISION_MODEL=gpt-4o
VISION_API_BASE=http://your-endpoint:port/v1
# Path settings (optional)
# If not set, defaults to data/output/ under project root
# DATA_DIR=./data
# OUTPUT_DIR=./data/output
# Output settings
# If OUTPUT_DIR is not set, it defaults to DATA_DIR/output
# OUTPUT_DIR=./output
LOG_LEVEL=INFO