-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
34 lines (26 loc) · 1.07 KB
/
.env.example
File metadata and controls
34 lines (26 loc) · 1.07 KB
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
30
31
32
33
34
# OpenAI API Configuration
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_ORG_ID=your_organization_id_optional
OPENAI_PROJECT_ID=your_project_id_optional
# ==========================================
# Interface Configuration (Dual-Interface Architecture)
# ==========================================
# Interface mode: cli | tui | gui
# Determines which interface to use when starting the system
CODEX_INTERFACE_MODE=cli
# Progressive disclosure tier: beginner | intermediate | advanced
# Controls complexity level shown in TUI/GUI interfaces
CODEX_INTERFACE_TIER=intermediate
# TUI-specific settings
# Theme for terminal user interface: dark | light | high-contrast
CODEX_TUI_THEME=dark
# TUI refresh interval in milliseconds (minimum 100)
CODEX_TUI_REFRESH_INTERVAL=1000
# GUI-specific settings
# Port for GUI daemon communication (default: 4242)
CODEX_GUI_PORT=4242
# Theme for graphical interface: dark | light | system
CODEX_GUI_THEME=system
# Auto-launch GUI when daemon starts (true/false)
CODEX_GUI_AUTO_LAUNCH=false