-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (22 loc) · 1.14 KB
/
.env.example
File metadata and controls
30 lines (22 loc) · 1.14 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
# codex-proxy configuration — copy to .env and fill in values.
# Loaded automatically via pydantic-settings on startup.
# Clients must send this as a Bearer token. Leave unset to allow open access.
# Generate: openssl rand -hex 32
# CODEX_PROXY_API_KEY=
# Directory for auth.json (default: ~/.codex-proxy)
# CODEX_PROXY_HOME=
# Codex backend URL
# CODEX_PROXY_BASE_URL=https://chatgpt.com/backend-api/codex
# Originator header sent upstream
# CODEX_PROXY_ORIGINATOR=codex_cli_rs
# Comma-separated models reported by /v1/models
# CODEX_PROXY_MODELS=gpt-5.5,gpt-5.4,gpt-5.4-mini,gpt-5.3-codex,gpt-5.2
# Comma-separated model aliases reported by /v1/models and routed upstream.
# Default: gpt-6:gpt-5.5
# CODEX_PROXY_MODEL_ALIASES=gpt-6:gpt-5.5
# Default system instructions when the request has no system/developer message
# CODEX_PROXY_DEFAULT_INSTRUCTIONS=You are a helpful assistant.
# Optional per-session capture for fine-tuning/distillation.
# Writes one JSON file per Cursor conversation with all turns so far.
# If a file path is given, its stem is used as the directory (logs/sessions.jsonl -> logs/sessions/).
# CODEX_PROXY_SESSION_LOG=logs/sessions