-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.env.example
More file actions
26 lines (17 loc) · 841 Bytes
/
.env.example
File metadata and controls
26 lines (17 loc) · 841 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
# Example environment file for pwb-alphaevolve
# Copy to `.env` and edit as needed. Values left blank will fall back to
# defaults specified in `alphaevolve/config.py`.
# ---------------------------------------------------------------------------
# OpenAI configuration
# ---------------------------------------------------------------------------
# Your OpenAI API key (required for live evolution)
OPENAI_API_KEY=
# Chat model name (default "o3-mini")
OPENAI_MODEL=o3-mini
# Maximum tokens for each response (default 4096)
MAX_COMPLETION_TOKENS=4096
# ---------------------------------------------------------------------------
# Data & storage
# ---------------------------------------------------------------------------
# Path to the SQLite database (default \~/.alphaevolve/programs.db)
SQLITE_DB="~/.alphaevolve/programs.db"