config-sample.md +286 −112
1# Sample Configuration1# Sample Configuration
2 2
33Use this example configuration as a starting point. It includes most keys Codex reads from `config.toml`, along with defaults and short notes.Use this example configuration as a starting point. It includes most keys Codex reads from `config.toml`, along with default behaviors, recommended values where helpful, and short notes.
4 4
5For explanations and guidance, see:5For explanations and guidance, see:
6 6
7- [Config basics](https://developers.openai.com/codex/config-basic)7- [Config basics](https://developers.openai.com/codex/config-basic)
8- [Advanced Config](https://developers.openai.com/codex/config-advanced)8- [Advanced Config](https://developers.openai.com/codex/config-advanced)
9- [Config Reference](https://developers.openai.com/codex/config-reference)9- [Config Reference](https://developers.openai.com/codex/config-reference)
10- [Sandbox and approvals](https://developers.openai.com/codex/agent-approvals-security#sandbox-and-approvals)
11- [Managed configuration](https://developers.openai.com/codex/enterprise/managed-configuration)
10 12
11Use the snippet below as a reference. Copy only the keys and sections you need into `~/.codex/config.toml` (or into a project-scoped `.codex/config.toml`), then adjust values for your setup.13Use the snippet below as a reference. Copy only the keys and sections you need into `~/.codex/config.toml` (or into a project-scoped `.codex/config.toml`), then adjust values for your setup.
12 14
13```toml15```toml
14# Codex example configuration (config.toml)16# Codex example configuration (config.toml)
15#17#
1618# This file lists all keys Codex reads from config.toml, their default values,# This file lists the main keys Codex reads from config.toml, along with default
1719# and concise explanations. Values here mirror the effective defaults compiled# behaviors, recommended examples, and concise explanations. Adjust as needed.
18# into the CLI. Adjust as needed.
19#20#
20# Notes21# Notes
21# - Root keys must appear before tables in TOML.22# - Root keys must appear before tables in TOML.
26# Core Model Selection27# Core Model Selection
27################################################################################28################################################################################
28 29
2930# Primary model used by Codex. Default: "gpt-5.2-codex" on all platforms.# Primary model used by Codex. Recommended example for most users: "gpt-5.5".
3031model = "gpt-5.2-codex"model = "gpt-5.5"
31 32
3233# Default communication style for supported models. Default: "friendly".# Communication style for supported models. Allowed values: none | friendly | pragmatic
3334# Allowed values: none | friendly | pragmatic# personality = "pragmatic"
34# personality = "friendly"
35 35
36# Optional model override for /review. Default: unset (uses current session model).36# Optional model override for /review. Default: unset (uses current session model).
3737# review_model = "gpt-5.2-codex"# review_model = "gpt-5.5"
38 38
39# Provider id selected from [model_providers]. Default: "openai".39# Provider id selected from [model_providers]. Default: "openai".
40model_provider = "openai"40model_provider = "openai"
42# Default OSS provider for --oss sessions. When unset, Codex prompts. Default: unset.42# Default OSS provider for --oss sessions. When unset, Codex prompts. Default: unset.
43# oss_provider = "ollama"43# oss_provider = "ollama"
44 44
4545# Optional manual model metadata. When unset, Codex auto-detects from model.# Preferred service tier. `fast` is honored only when enabled in [features].
4646# Uncomment to force values.# service_tier = "flex" # fast | flex
47
48# Optional manual model metadata. When unset, Codex uses model or preset defaults.
47# model_context_window = 128000 # tokens; default: auto for model49# model_context_window = 128000 # tokens; default: auto for model
4850# model_auto_compact_token_limit = 0 # tokens; unset uses model defaults# model_auto_compact_token_limit = 64000 # tokens; unset uses model defaults
4951# tool_output_token_limit = 10000 # tokens stored per tool output; default: 10000 for gpt-5.2-codex# tool_output_token_limit = 12000 # tokens stored per tool output
52# model_catalog_json = "/absolute/path/to/models.json" # optional startup-only model catalog override
53# background_terminal_max_timeout = 300000 # ms; max empty write_stdin poll window (default 5m)
50# log_dir = "/absolute/path/to/codex-logs" # directory for Codex logs; default: "$CODEX_HOME/log"54# log_dir = "/absolute/path/to/codex-logs" # directory for Codex logs; default: "$CODEX_HOME/log"
55# sqlite_home = "/absolute/path/to/codex-state" # optional SQLite-backed runtime state directory
51 56
52################################################################################57################################################################################
53# Reasoning & Verbosity (Responses API capable models)58# Reasoning & Verbosity (Responses API capable models)
54################################################################################59################################################################################
55 60
5661# Reasoning effort: minimal | low | medium | high | xhigh (default: medium; xhigh on gpt-5.2-codex and gpt-5.2)# Reasoning effort: minimal | low | medium | high | xhigh
5762model_reasoning_effort = "medium"# model_reasoning_effort = "medium"
63
64# Optional override used when Codex runs in plan mode: none | minimal | low | medium | high | xhigh
65# plan_mode_reasoning_effort = "high"
58 66
5967# Reasoning summary: auto | concise | detailed | none (default: auto)# Reasoning summary: auto | concise | detailed | none
60# model_reasoning_summary = "auto"68# model_reasoning_summary = "auto"
61 69
6270# Text verbosity for GPT-5 family (Responses API): low | medium | high (default: medium)# Text verbosity for GPT-5 family (Responses API): low | medium | high
63# model_verbosity = "medium"71# model_verbosity = "medium"
64 72
6573# Force enable or disable reasoning summaries for current model# Force enable or disable reasoning summaries for current model.
66# model_supports_reasoning_summaries = true74# model_supports_reasoning_summaries = true
67 75
68################################################################################76################################################################################
72# Additional user instructions are injected before AGENTS.md. Default: unset.80# Additional user instructions are injected before AGENTS.md. Default: unset.
73# developer_instructions = ""81# developer_instructions = ""
74 82
75# (Ignored) Optional legacy base instructions override (prefer AGENTS.md). Default: unset.
76# instructions = ""
77
78# Inline override for the history compaction prompt. Default: unset.83# Inline override for the history compaction prompt. Default: unset.
79# compact_prompt = ""84# compact_prompt = ""
80 85
86# Override the default commit co-author trailer. Set to "" to disable it.
87# commit_attribution = "Jane Doe <jane@example.com>"
88
81# Override built-in base instructions with a file path. Default: unset.89# Override built-in base instructions with a file path. Default: unset.
82# model_instructions_file = "/absolute/or/relative/path/to/instructions.txt"90# model_instructions_file = "/absolute/or/relative/path/to/instructions.txt"
83 91
84# Migration note: experimental_instructions_file was renamed to model_instructions_file (deprecated).
85
86# Load the compact prompt override from a file. Default: unset.92# Load the compact prompt override from a file. Default: unset.
87# experimental_compact_prompt_file = "/absolute/or/relative/path/to/compact_prompt.txt"93# experimental_compact_prompt_file = "/absolute/or/relative/path/to/compact_prompt.txt"
88 94
89# Legacy name for apply_patch_freeform. Default: false
90include_apply_patch_tool = false
91
92################################################################################95################################################################################
93# Notifications96# Notifications
94################################################################################97################################################################################
95 98
96# External notifier program (argv array). When unset: disabled.99# External notifier program (argv array). When unset: disabled.
97100# Example: notify = ["notify-send", "Codex"]# notify = ["notify-send", "Codex"]
98notify = [ ]
99 101
100################################################################################102################################################################################
101# Approval & Sandbox103# Approval & Sandbox
105# - untrusted: only known-safe read-only commands auto-run; others prompt107# - untrusted: only known-safe read-only commands auto-run; others prompt
106# - on-request: model decides when to ask (default)108# - on-request: model decides when to ask (default)
107# - never: never prompt (risky)109# - never: never prompt (risky)
110# - { granular = { ... } }: allow or auto-reject selected prompt categories
108approval_policy = "on-request"111approval_policy = "on-request"
112# Who reviews eligible approval prompts: user (default) | auto_review
113# approvals_reviewer = "user"
114
115# Example granular policy:
116# approval_policy = { granular = {
117# sandbox_approval = true,
118# rules = true,
119# mcp_elicitations = true,
120# request_permissions = false,
121# skill_approval = false
122# } }
123
124# Allow login-shell semantics for shell-based tools when they request `login = true`.
125# Default: true. Set false to force non-login shells and reject explicit login-shell requests.
126allow_login_shell = true
109 127
110# Filesystem/network sandbox policy for tool calls:128# Filesystem/network sandbox policy for tool calls:
111# - read-only (default)129# - read-only (default)
112# - workspace-write130# - workspace-write
113# - danger-full-access (no sandbox; extremely risky)131# - danger-full-access (no sandbox; extremely risky)
114sandbox_mode = "read-only"132sandbox_mode = "read-only"
133# Named permissions profile to apply by default. Built-ins:
134# :read-only | :workspace | :danger-no-sandbox
135# Use a custom name such as "workspace" only when you also define [permissions.workspace].
136# default_permissions = ":workspace"
137
138# Example filesystem profile. Use `"none"` to deny reads for exact paths or
139# glob patterns. On platforms that need pre-expanded glob matches, set
140# glob_scan_max_depth when using unbounded patterns such as `**`.
141# [permissions.workspace.filesystem]
142# glob_scan_max_depth = 3
143# ":project_roots" = { "." = "write", "**/*.env" = "none" }
144# "/absolute/path/to/secrets" = "none"
115 145
116################################################################################146################################################################################
117# Authentication & Login147# Authentication & Login
120# Where to persist CLI login credentials: file (default) | keyring | auto150# Where to persist CLI login credentials: file (default) | keyring | auto
121cli_auth_credentials_store = "file"151cli_auth_credentials_store = "file"
122 152
123153# Base URL for ChatGPT auth flow (not OpenAI API). Default:# Base URL for ChatGPT auth flow (not OpenAI API).
124chatgpt_base_url = "https://chatgpt.com/backend-api/"154chatgpt_base_url = "https://chatgpt.com/backend-api/"
125 155
156# Optional base URL override for the built-in OpenAI provider.
157# openai_base_url = "https://us.api.openai.com/v1"
158
126# Restrict ChatGPT login to a specific workspace id. Default: unset.159# Restrict ChatGPT login to a specific workspace id. Default: unset.
127160# forced_chatgpt_workspace_id = ""# forced_chatgpt_workspace_id = "00000000-0000-0000-0000-000000000000"
128 161
129# Force login mechanism when Codex would normally auto-select. Default: unset.162# Force login mechanism when Codex would normally auto-select. Default: unset.
130# Allowed values: chatgpt | api163# Allowed values: chatgpt | api
132 165
133# Preferred store for MCP OAuth credentials: auto (default) | file | keyring166# Preferred store for MCP OAuth credentials: auto (default) | file | keyring
134mcp_oauth_credentials_store = "auto"167mcp_oauth_credentials_store = "auto"
135
136# Optional fixed port for MCP OAuth callback: 1-65535. Default: unset.168# Optional fixed port for MCP OAuth callback: 1-65535. Default: unset.
137# mcp_oauth_callback_port = 4321169# mcp_oauth_callback_port = 4321
170# Optional redirect URI override for MCP OAuth login (for example, remote devbox ingress).
171# Custom callback paths are supported. `mcp_oauth_callback_port` still controls the listener port.
172# mcp_oauth_callback_url = "https://devbox.example.internal/callback"
138 173
139################################################################################174################################################################################
140# Project Documentation Controls175# Project Documentation Controls
185# If you use --yolo or another full access sandbox setting, web search defaults to live.220# If you use --yolo or another full access sandbox setting, web search defaults to live.
186web_search = "cached"221web_search = "cached"
187 222
223# Active profile name. When unset, no profile is applied.
224# profile = "default"
225
226# Suppress the warning shown when under-development feature flags are enabled.
227# suppress_unstable_features_warning = true
228
188################################################################################229################################################################################
189230# Profiles (named presets)# Agents (multi-agent roles and limits)
190################################################################################231################################################################################
191 232
192233# Active profile name. When unset, no profile is applied.[agents]
193234# profile = "default"# Maximum concurrently open agent threads. Default: 6
235# max_threads = 6
236# Maximum nested spawn depth. Root session starts at depth 0. Default: 1
237# max_depth = 1
238# Default timeout per worker for spawn_agents_on_csv jobs. When unset, the tool defaults to 1800 seconds.
239# job_max_runtime_seconds = 1800
240
241# [agents.reviewer]
242# description = "Find correctness, security, and test risks in code."
243# config_file = "./agents/reviewer.toml" # relative to the config.toml that defines it
244# nickname_candidates = ["Athena", "Ada"]
194 245
195################################################################################246################################################################################
196# Skills (per-skill overrides)247# Skills (per-skill overrides)
198 249
199# Disable or re-enable a specific skill without deleting it.250# Disable or re-enable a specific skill without deleting it.
200[[skills.config]]251[[skills.config]]
201252# path = "/path/to/skill"# path = "/path/to/skill/SKILL.md"
202# enabled = false253# enabled = false
203 254
204################################################################################
205# Experimental toggles (legacy; prefer [features])
206################################################################################
207
208experimental_use_unified_exec_tool = false
209
210# Include apply_patch via freeform editing path (affects default tool set). Default: false
211experimental_use_freeform_apply_patch = false
212
213################################################################################255################################################################################
214# Sandbox settings (tables)256# Sandbox settings (tables)
215################################################################################257################################################################################
232[shell_environment_policy]274[shell_environment_policy]
233# inherit: all (default) | core | none275# inherit: all (default) | core | none
234inherit = "all"276inherit = "all"
235277# Skip default excludes for names containing KEY/SECRET/TOKEN (case-insensitive). Default: true# Skip default excludes for names containing KEY/SECRET/TOKEN (case-insensitive). Default: false
236278ignore_default_excludes = trueignore_default_excludes = false
237# Case-insensitive glob patterns to remove (e.g., "AWS_*", "AZURE_*"). Default: []279# Case-insensitive glob patterns to remove (e.g., "AWS_*", "AZURE_*"). Default: []
238exclude = []280exclude = []
239# Explicit key/value overrides (always win). Default: {}281# Explicit key/value overrides (always win). Default: {}
243# Experimental: run via user shell profile. Default: false285# Experimental: run via user shell profile. Default: false
244experimental_use_profile = false286experimental_use_profile = false
245 287
288################################################################################
289# Managed network proxy settings
290################################################################################
291
292# Set `default_permissions = "workspace"` before enabling this profile.
293# [permissions.workspace.network]
294# enabled = true
295# proxy_url = "http://127.0.0.1:43128"
296# admin_url = "http://127.0.0.1:43129"
297# enable_socks5 = false
298# socks_url = "http://127.0.0.1:43130"
299# enable_socks5_udp = false
300# allow_upstream_proxy = false
301# dangerously_allow_non_loopback_proxy = false
302# dangerously_allow_non_loopback_admin = false
303# dangerously_allow_all_unix_sockets = false
304# mode = "limited" # limited | full
305# allow_local_binding = false
306#
307# [permissions.workspace.network.domains]
308# "api.openai.com" = "allow"
309# "example.com" = "deny"
310#
311# [permissions.workspace.network.unix_sockets]
312# "/var/run/docker.sock" = "allow"
313
246################################################################################314################################################################################
247# History (table)315# History (table)
248################################################################################316################################################################################
251# save-all (default) | none319# save-all (default) | none
252persistence = "save-all"320persistence = "save-all"
253# Maximum bytes for history file; oldest entries are trimmed when exceeded. Example: 5242880321# Maximum bytes for history file; oldest entries are trimmed when exceeded. Example: 5242880
254322# max_bytes = 0# max_bytes = 5242880
255 323
256################################################################################324################################################################################
257# UI, Notifications, and Misc (tables)325# UI, Notifications, and Misc (tables)
265# Notification mechanism for terminal alerts: auto | osc9 | bel. Default: "auto"333# Notification mechanism for terminal alerts: auto | osc9 | bel. Default: "auto"
266# notification_method = "auto"334# notification_method = "auto"
267 335
336# When notifications fire: unfocused (default) | always
337# notification_condition = "unfocused"
338
268# Enables welcome/status/spinner animations. Default: true339# Enables welcome/status/spinner animations. Default: true
269animations = true340animations = true
270 341
274# Control alternate screen usage (auto skips it in Zellij to preserve scrollback).345# Control alternate screen usage (auto skips it in Zellij to preserve scrollback).
275# alternate_screen = "auto"346# alternate_screen = "auto"
276 347
277348# Ordered list of footer status-line item IDs. Default: null (disabled).# Ordered list of footer status-line item IDs. When unset, Codex uses:
349# ["model-with-reasoning", "context-remaining", "current-dir"].
350# Set to [] to hide the footer.
278# status_line = ["model", "context-remaining", "git-branch"]351# status_line = ["model", "context-remaining", "git-branch"]
279 352
353# Ordered list of terminal window/tab title item IDs. When unset, Codex uses:
354# ["spinner", "project"]. Set to [] to clear the title.
355# Available IDs include app-name, project, spinner, status, thread, git-branch, model,
356# and task-progress.
357# terminal_title = ["spinner", "project"]
358
359# Syntax-highlighting theme (kebab-case). Use /theme in the TUI to preview and save.
360# You can also add custom .tmTheme files under $CODEX_HOME/themes.
361# theme = "catppuccin-mocha"
362
363# Custom key bindings. Context-specific bindings override [tui.keymap.global].
364# Use [] to unbind an action.
365# [tui.keymap.global]
366# open_transcript = "ctrl-t"
367# open_external_editor = []
368#
369# [tui.keymap.composer]
370# submit = ["enter", "ctrl-m"]
371
372# Internal tooltip state keyed by model slug. Usually managed by Codex.
373# [tui.model_availability_nux]
374# "gpt-5.4" = 1
375
376# Enable or disable analytics for this machine. When unset, Codex uses its default behavior.
377[analytics]
378enabled = true
379
280# Control whether users can submit feedback from `/feedback`. Default: true380# Control whether users can submit feedback from `/feedback`. Default: true
281[feedback]381[feedback]
282enabled = true382enabled = true
288# hide_rate_limit_model_nudge = true388# hide_rate_limit_model_nudge = true
289# hide_gpt5_1_migration_prompt = true389# hide_gpt5_1_migration_prompt = true
290# "hide_gpt-5.1-codex-max_migration_prompt" = true390# "hide_gpt-5.1-codex-max_migration_prompt" = true
291391# model_migrations = { "gpt-4.1" = "gpt-5.1" }# model_migrations = { "gpt-5.3-codex" = "gpt-5.4" }
292
293# Suppress the warning shown when under-development feature flags are enabled.
294# suppress_unstable_features_warning = true
295 392
296################################################################################393################################################################################
297# Centralized Feature Flags (preferred)394# Centralized Feature Flags (preferred)
299 396
300[features]397[features]
301# Leave this table empty to accept defaults. Set explicit booleans to opt in/out.398# Leave this table empty to accept defaults. Set explicit booleans to opt in/out.
302399shell_tool = true# shell_tool = true
303# apps = false400# apps = false
304401# apps_mcp_gateway = false# codex_hooks = false
305402# Deprecated legacy toggles; prefer the top-level `web_search` setting.# unified_exec = true
306403# web_search = false# shell_snapshot = true
307404# web_search_cached = false# multi_agent = true
308# web_search_request = false
309unified_exec = false
310shell_snapshot = false
311apply_patch_freeform = false
312# search_tool = false
313# personality = true405# personality = true
314406request_rule = true# fast_mode = true
315407collaboration_modes = true# enable_request_compression = true
316408use_linux_sandbox_bwrap = false# skill_mcp_dependency_install = true
317409experimental_windows_sandbox = false# prevent_idle_sleep = false
318410elevated_windows_sandbox = false
319411remote_models = false################################################################################
320412runtime_metrics = false# Memories (table)
321413powershell_utf8 = true################################################################################
322414child_agents_md = false
415# Enable memories with [features].memories, then tune memory behavior here.
416# [memories]
417# generate_memories = true
418# use_memories = true
419# disable_on_external_context = false # legacy alias: no_memories_if_mcp_or_web_search
420
421################################################################################
422# Lifecycle hooks can be configured here inline or in a sibling hooks.json.
423################################################################################
424
425# [hooks]
426# [[hooks.PreToolUse]]
427# matcher = "^Bash$"
428#
429# [[hooks.PreToolUse.hooks]]
430# type = "command"
431# command = 'python3 "/absolute/path/to/pre_tool_use_policy.py"'
432# timeout = 30
433# statusMessage = "Checking Bash command"
323 434
324################################################################################435################################################################################
325# Define MCP servers under this table. Leave empty to disable.436# Define MCP servers under this table. Leave empty to disable.
334# command = "docs-server" # required445# command = "docs-server" # required
335# args = ["--port", "4000"] # optional446# args = ["--port", "4000"] # optional
336# env = { "API_KEY" = "value" } # optional key/value pairs copied as-is447# env = { "API_KEY" = "value" } # optional key/value pairs copied as-is
337448# env_vars = ["ANOTHER_SECRET"] # optional: forward these from the parent env# env_vars = ["ANOTHER_SECRET"] # optional: forward local parent env vars
449# env_vars = ["LOCAL_TOKEN", { name = "REMOTE_TOKEN", source = "remote" }]
338# cwd = "/path/to/server" # optional working directory override450# cwd = "/path/to/server" # optional working directory override
451# experimental_environment = "remote" # experimental: run stdio via a remote executor
339# startup_timeout_sec = 10.0 # optional; default 10.0 seconds452# startup_timeout_sec = 10.0 # optional; default 10.0 seconds
340# # startup_timeout_ms = 10000 # optional alias for startup timeout (milliseconds)453# # startup_timeout_ms = 10000 # optional alias for startup timeout (milliseconds)
341# tool_timeout_sec = 60.0 # optional; default 60.0 seconds454# tool_timeout_sec = 60.0 # optional; default 60.0 seconds
342# enabled_tools = ["search", "summarize"] # optional allow-list455# enabled_tools = ["search", "summarize"] # optional allow-list
343# disabled_tools = ["slow-tool"] # optional deny-list (applied after allow-list)456# disabled_tools = ["slow-tool"] # optional deny-list (applied after allow-list)
457# scopes = ["read:docs"] # optional OAuth scopes
458# oauth_resource = "https://docs.example.com/" # optional OAuth resource
344 459
345# --- Example: Streamable HTTP transport ---460# --- Example: Streamable HTTP transport ---
346# [mcp_servers.github]461# [mcp_servers.github]
353# startup_timeout_sec = 10.0 # optional468# startup_timeout_sec = 10.0 # optional
354# tool_timeout_sec = 60.0 # optional469# tool_timeout_sec = 60.0 # optional
355# enabled_tools = ["list_issues"] # optional allow-list470# enabled_tools = ["list_issues"] # optional allow-list
471# disabled_tools = ["delete_issue"] # optional deny-list
472# scopes = ["repo"] # optional OAuth scopes
356 473
357################################################################################474################################################################################
358# Model Providers475# Model Providers
359################################################################################476################################################################################
360 477
361# Built-ins include:478# Built-ins include:
362479# - openai (Responses API; requires login or OPENAI_API_KEY via auth flow)# - openai
363480# - oss (Chat Completions API; defaults to http://localhost:11434/v1)# - ollama
481# - lmstudio
482# - amazon-bedrock
483# These IDs are reserved. Use a different ID for custom providers.
364 484
365[model_providers]485[model_providers]
366 486
487# --- Example: built-in Amazon Bedrock provider options ---
488# model_provider = "amazon-bedrock"
489# model = "<bedrock-model-id>"
490# [model_providers.amazon-bedrock.aws]
491# profile = "default"
492# region = "eu-central-1"
493
367# --- Example: OpenAI data residency with explicit base URL or headers ---494# --- Example: OpenAI data residency with explicit base URL or headers ---
368# [model_providers.openaidr]495# [model_providers.openaidr]
369# name = "OpenAI Data Residency"496# name = "OpenAI Data Residency"
370# base_url = "https://us.api.openai.com/v1" # example with 'us' domain prefix497# base_url = "https://us.api.openai.com/v1" # example with 'us' domain prefix
371498# wire_api = "responses" # "responses" | "chat" (default varies)# wire_api = "responses" # only supported value
372499# # requires_openai_auth = true # built-in OpenAI defaults to true# # requires_openai_auth = true # use only for providers backed by OpenAI auth
373# # request_max_retries = 4 # default 4; max 100500# # request_max_retries = 4 # default 4; max 100
374# # stream_max_retries = 5 # default 5; max 100501# # stream_max_retries = 5 # default 5; max 100
375# # stream_idle_timeout_ms = 300000 # default 300_000 (5m)502# # stream_idle_timeout_ms = 300000 # default 300_000 (5m)
503# # supports_websockets = true # optional
376# # experimental_bearer_token = "sk-example" # optional dev-only direct bearer token504# # experimental_bearer_token = "sk-example" # optional dev-only direct bearer token
377# # http_headers = { "X-Example" = "value" }505# # http_headers = { "X-Example" = "value" }
378# # env_http_headers = { "OpenAI-Organization" = "OPENAI_ORGANIZATION", "OpenAI-Project" = "OPENAI_PROJECT" }506# # env_http_headers = { "OpenAI-Organization" = "OPENAI_ORGANIZATION", "OpenAI-Project" = "OPENAI_PROJECT" }
379 507
380508# --- Example: Azure (Chat/Responses depending on endpoint) ---# --- Example: Azure/OpenAI-compatible provider ---
381# [model_providers.azure]509# [model_providers.azure]
382# name = "Azure"510# name = "Azure"
383# base_url = "https://YOUR_PROJECT_NAME.openai.azure.com/openai"511# base_url = "https://YOUR_PROJECT_NAME.openai.azure.com/openai"
384512# wire_api = "responses" # or "chat" per endpoint# wire_api = "responses"
385# query_params = { api-version = "2025-04-01-preview" }513# query_params = { api-version = "2025-04-01-preview" }
386# env_key = "AZURE_OPENAI_API_KEY"514# env_key = "AZURE_OPENAI_API_KEY"
387515# # env_key_instructions = "Set AZURE_OPENAI_API_KEY in your environment"# env_key_instructions = "Set AZURE_OPENAI_API_KEY in your environment"
516# # supports_websockets = false
517
518# --- Example: command-backed bearer token auth ---
519# [model_providers.proxy]
520# name = "OpenAI using LLM proxy"
521# base_url = "https://proxy.example.com/v1"
522# wire_api = "responses"
523#
524# [model_providers.proxy.auth]
525# command = "/usr/local/bin/fetch-codex-token"
526# args = ["--audience", "codex"]
527# timeout_ms = 5000
528# refresh_interval_ms = 300000
388 529
389# --- Example: Local OSS (e.g., Ollama-compatible) ---530# --- Example: Local OSS (e.g., Ollama-compatible) ---
390531# [model_providers.ollama]# [model_providers.local_ollama]
391# name = "Ollama"532# name = "Ollama"
392# base_url = "http://localhost:11434/v1"533# base_url = "http://localhost:11434/v1"
393534# wire_api = "chat"# wire_api = "responses"
535
536################################################################################
537# Apps / Connectors
538################################################################################
539
540# Optional per-app controls.
541[apps]
542# [_default] applies to all apps unless overridden per app.
543# [apps._default]
544# enabled = true
545# destructive_enabled = true
546# open_world_enabled = true
547#
548# [apps.google_drive]
549# enabled = false
550# destructive_enabled = false # block destructive-hint tools for this app
551# default_tools_enabled = true
552# default_tools_approval_mode = "prompt" # auto | prompt | approve
553#
554# [apps.google_drive.tools."files/delete"]
555# enabled = false
556# approval_mode = "approve"
557
558# Optional tool suggestion allowlist for connectors or plugins Codex can offer to install.
559# [tool_suggest]
560# discoverables = [
561# { type = "connector", id = "gmail" },
562# { type = "plugin", id = "figma@openai-curated" },
563# ]
564# disabled_tools = [
565# { type = "plugin", id = "slack@openai-curated" },
566# { type = "connector", id = "connector_googlecalendar" },
567# ]
394 568
395################################################################################569################################################################################
396# Profiles (named presets)570# Profiles (named presets)
399[profiles]573[profiles]
400 574
401# [profiles.default]575# [profiles.default]
402576# model = "gpt-5.2-codex"# model = "gpt-5.4"
403# model_provider = "openai"577# model_provider = "openai"
404# approval_policy = "on-request"578# approval_policy = "on-request"
405# sandbox_mode = "read-only"579# sandbox_mode = "read-only"
580# service_tier = "flex"
406# oss_provider = "ollama"581# oss_provider = "ollama"
407# model_reasoning_effort = "medium"582# model_reasoning_effort = "medium"
583# plan_mode_reasoning_effort = "high"
408# model_reasoning_summary = "auto"584# model_reasoning_summary = "auto"
409# model_verbosity = "medium"585# model_verbosity = "medium"
410586# personality = "friendly" # or "pragmatic" or "none"# personality = "pragmatic" # or "friendly" or "none"
411# chatgpt_base_url = "https://chatgpt.com/backend-api/"587# chatgpt_base_url = "https://chatgpt.com/backend-api/"
588# model_catalog_json = "./models.json"
589# model_instructions_file = "/absolute/or/relative/path/to/instructions.txt"
412# experimental_compact_prompt_file = "./compact_prompt.txt"590# experimental_compact_prompt_file = "./compact_prompt.txt"
413591# include_apply_patch_tool = false# tools_view_image = true
414# experimental_use_unified_exec_tool = false
415# experimental_use_freeform_apply_patch = false
416# tools.web_search = false # deprecated legacy alias; prefer top-level `web_search`
417# features = { unified_exec = false }592# features = { unified_exec = false }
418 593
419################################################################################
420# Apps / Connectors
421################################################################################
422
423# Optional per-app controls.
424[apps]
425# [apps.google_drive]
426# enabled = false
427# disabled_reason = "user" # or "unknown"
428
429################################################################################594################################################################################
430# Projects (trust levels)595# Projects (trust levels)
431################################################################################596################################################################################
432 597
433# Mark specific worktrees as trusted or untrusted.
434[projects]598[projects]
599# Mark specific worktrees as trusted or untrusted.
435# [projects."/absolute/path/to/project"]600# [projects."/absolute/path/to/project"]
436# trust_level = "trusted" # or "untrusted"601# trust_level = "trusted" # or "untrusted"
437 602
603################################################################################
604# Tools
605################################################################################
606
607[tools]
608# view_image = true
609
438################################################################################610################################################################################
439# OpenTelemetry (OTEL) - disabled by default611# OpenTelemetry (OTEL) - disabled by default
440################################################################################612################################################################################
448exporter = "none"620exporter = "none"
449# Trace exporter: none (default) | otlp-http | otlp-grpc621# Trace exporter: none (default) | otlp-http | otlp-grpc
450trace_exporter = "none"622trace_exporter = "none"
623# Metrics exporter: none | statsig | otlp-http | otlp-grpc
624metrics_exporter = "statsig"
451 625
452# Example OTLP/HTTP exporter configuration626# Example OTLP/HTTP exporter configuration
453# [otel.exporter."otlp-http"]627# [otel.exporter."otlp-http"]
457# [otel.exporter."otlp-http".headers]631# [otel.exporter."otlp-http".headers]
458# "x-otlp-api-key" = "${OTLP_TOKEN}"632# "x-otlp-api-key" = "${OTLP_TOKEN}"
459 633
460# Example OTLP/gRPC exporter configuration
461# [otel.exporter."otlp-grpc"]
462# endpoint = "https://otel.example.com:4317",
463# headers = { "x-otlp-meta" = "abc123" }
464
465# Example OTLP exporter with mutual TLS
466# [otel.exporter."otlp-http"]
467# endpoint = "https://otel.example.com/v1/logs"
468# protocol = "binary"
469
470# [otel.exporter."otlp-http".headers]
471# "x-otlp-api-key" = "${OTLP_TOKEN}"
472
473# [otel.exporter."otlp-http".tls]634# [otel.exporter."otlp-http".tls]
474# ca-certificate = "certs/otel-ca.pem"635# ca-certificate = "certs/otel-ca.pem"
475# client-certificate = "/etc/codex/certs/client.pem"636# client-certificate = "/etc/codex/certs/client.pem"
476# client-private-key = "/etc/codex/certs/client-key.pem"637# client-private-key = "/etc/codex/certs/client-key.pem"
638
639# Example OTLP/gRPC trace exporter configuration
640# [otel.trace_exporter."otlp-grpc"]
641# endpoint = "https://otel.example.com:4317"
642# headers = { "x-otlp-meta" = "abc123" }
643
644################################################################################
645# Windows
646################################################################################
647
648[windows]
649# Native Windows sandbox mode (Windows only): unelevated | elevated
650sandbox = "unelevated"
477```651```