-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
33 lines (28 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
31
32
33
ROUTER_HOST=127.0.0.1
ROUTER_PORT=8788
# auto: reuse the current Codex Provider, unless Router-specific overrides are set.
# openai: always use the current ChatGPT/Plus or OpenAI API key login.
# provider_key: always use the key named by ROUTER_API_KEY_ENV.
# none: send no authorization header to the upstream provider.
ROUTER_AUTH_MODE=auto
ROUTER_API_KEY_ENV=ROUTER_API_KEY
ROUTER_API_KEY=
# Optional advanced override. When empty, the selected Codex Provider supplies
# the upstream address. Required only for standalone provider_key overrides.
# ROUTER_UPSTREAM_BASE=https://api.example.com/v1
ROUTER_UPSTREAM_BASE=
ROUTER_LOG_REQUESTS=0
ROUTER_LOG_TASK_PREVIEW=0
ROUTER_RESPONSE_FOOTER=1
# Optional Codex CLI path when it is not available through PATH
# CODEX_BIN=/absolute/path/to/codex
# Optional named Codex profile, matching `codex -p <name>`.
# ROUTER_CODEX_PROFILE=team
# Optional upstream model overrides
# ROUTER_LUNA_MODEL=gpt-5.6-luna
# ROUTER_TERRA_MODEL=gpt-5.6-terra
# ROUTER_SOL_MODEL=gpt-5.6-sol
# Optional capability metadata overrides
# ROUTER_LUNA_CONTEXT_TOKENS=372000
# ROUTER_TERRA_CONTEXT_TOKENS=372000
# ROUTER_SOL_CONTEXT_TOKENS=372000