config-sample.md +188 −107
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.4".
3031model = "gpt-5.2-codex"model = "gpt-5.4"
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.4"
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# - { reject = { ... } }: auto-reject selected prompt categories
108approval_policy = "on-request"111approval_policy = "on-request"
112# Example granular auto-reject policy:
113# approval_policy = { reject = { sandbox_approval = true, rules = false, mcp_elicitations = false } }
114
115# Allow login-shell semantics for shell-based tools when they request `login = true`.
116# Default: true. Set false to force non-login shells and reject explicit login-shell requests.
117allow_login_shell = true
109 118
110# Filesystem/network sandbox policy for tool calls:119# Filesystem/network sandbox policy for tool calls:
111# - read-only (default)120# - read-only (default)
120# Where to persist CLI login credentials: file (default) | keyring | auto129# Where to persist CLI login credentials: file (default) | keyring | auto
121cli_auth_credentials_store = "file"130cli_auth_credentials_store = "file"
122 131
123132# 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/"133chatgpt_base_url = "https://chatgpt.com/backend-api/"
125 134
126# Restrict ChatGPT login to a specific workspace id. Default: unset.135# Restrict ChatGPT login to a specific workspace id. Default: unset.
127136# forced_chatgpt_workspace_id = ""# forced_chatgpt_workspace_id = "00000000-0000-0000-0000-000000000000"
128 137
129# Force login mechanism when Codex would normally auto-select. Default: unset.138# Force login mechanism when Codex would normally auto-select. Default: unset.
130# Allowed values: chatgpt | api139# Allowed values: chatgpt | api
132 141
133# Preferred store for MCP OAuth credentials: auto (default) | file | keyring142# Preferred store for MCP OAuth credentials: auto (default) | file | keyring
134mcp_oauth_credentials_store = "auto"143mcp_oauth_credentials_store = "auto"
135
136# Optional fixed port for MCP OAuth callback: 1-65535. Default: unset.144# Optional fixed port for MCP OAuth callback: 1-65535. Default: unset.
137# mcp_oauth_callback_port = 4321145# mcp_oauth_callback_port = 4321
146# Optional redirect URI override for MCP OAuth login (for example, remote devbox ingress).
147# Custom callback paths are supported. `mcp_oauth_callback_port` still controls the listener port.
148# mcp_oauth_callback_url = "https://devbox.example.internal/callback"
138 149
139################################################################################150################################################################################
140# Project Documentation Controls151# Project Documentation Controls
185# If you use --yolo or another full access sandbox setting, web search defaults to live.196# If you use --yolo or another full access sandbox setting, web search defaults to live.
186web_search = "cached"197web_search = "cached"
187 198
199# Active profile name. When unset, no profile is applied.
200# profile = "default"
201
202# Suppress the warning shown when under-development feature flags are enabled.
203# suppress_unstable_features_warning = true
204
188################################################################################205################################################################################
189206# Profiles (named presets)# Agents (multi-agent roles and limits)
190################################################################################207################################################################################
191 208
192209# Active profile name. When unset, no profile is applied.[agents]
193210# profile = "default"# Maximum concurrently open agent threads. Default: 6
211# max_threads = 6
212# Maximum nested spawn depth. Root session starts at depth 0. Default: 1
213# max_depth = 1
214# Default timeout per worker for spawn_agents_on_csv jobs. When unset, the tool defaults to 1800 seconds.
215# job_max_runtime_seconds = 1800
216
217# [agents.reviewer]
218# description = "Find correctness, security, and test risks in code."
219# config_file = "./agents/reviewer.toml" # relative to the config.toml that defines it
220# nickname_candidates = ["Athena", "Ada"]
194 221
195################################################################################222################################################################################
196# Skills (per-skill overrides)223# Skills (per-skill overrides)
198 225
199# Disable or re-enable a specific skill without deleting it.226# Disable or re-enable a specific skill without deleting it.
200[[skills.config]]227[[skills.config]]
201228# path = "/path/to/skill"# path = "/path/to/skill/SKILL.md"
202# enabled = false229# enabled = false
203 230
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################################################################################231################################################################################
214# Sandbox settings (tables)232# Sandbox settings (tables)
215################################################################################233################################################################################
232[shell_environment_policy]250[shell_environment_policy]
233# inherit: all (default) | core | none251# inherit: all (default) | core | none
234inherit = "all"252inherit = "all"
235253# 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
236254ignore_default_excludes = trueignore_default_excludes = false
237# Case-insensitive glob patterns to remove (e.g., "AWS_*", "AZURE_*"). Default: []255# Case-insensitive glob patterns to remove (e.g., "AWS_*", "AZURE_*"). Default: []
238exclude = []256exclude = []
239# Explicit key/value overrides (always win). Default: {}257# Explicit key/value overrides (always win). Default: {}
243# Experimental: run via user shell profile. Default: false261# Experimental: run via user shell profile. Default: false
244experimental_use_profile = false262experimental_use_profile = false
245 263
264################################################################################
265# Managed network proxy settings
266################################################################################
267
268[permissions.network]
269# enabled = true
270# proxy_url = "http://127.0.0.1:43128"
271# admin_url = "http://127.0.0.1:43129"
272# enable_socks5 = false
273# socks_url = "http://127.0.0.1:43130"
274# enable_socks5_udp = false
275# allow_upstream_proxy = false
276# dangerously_allow_non_loopback_proxy = false
277# dangerously_allow_non_loopback_admin = false
278# dangerously_allow_all_unix_sockets = false
279# mode = "limited" # limited | full
280# allowed_domains = ["api.openai.com"]
281# denied_domains = ["example.com"]
282# allow_unix_sockets = ["/var/run/docker.sock"]
283# allow_local_binding = false
284
246################################################################################285################################################################################
247# History (table)286# History (table)
248################################################################################287################################################################################
251# save-all (default) | none290# save-all (default) | none
252persistence = "save-all"291persistence = "save-all"
253# Maximum bytes for history file; oldest entries are trimmed when exceeded. Example: 5242880292# Maximum bytes for history file; oldest entries are trimmed when exceeded. Example: 5242880
254293# max_bytes = 0# max_bytes = 5242880
255 294
256################################################################################295################################################################################
257# UI, Notifications, and Misc (tables)296# UI, Notifications, and Misc (tables)
274# Control alternate screen usage (auto skips it in Zellij to preserve scrollback).313# Control alternate screen usage (auto skips it in Zellij to preserve scrollback).
275# alternate_screen = "auto"314# alternate_screen = "auto"
276 315
277316# Ordered list of footer status-line item IDs. Default: null (disabled).# Ordered list of footer status-line item IDs. When unset, Codex uses:
317# ["model-with-reasoning", "context-remaining", "current-dir"].
318# Set to [] to hide the footer.
278# status_line = ["model", "context-remaining", "git-branch"]319# status_line = ["model", "context-remaining", "git-branch"]
279 320
321# Syntax-highlighting theme (kebab-case). Use /theme in the TUI to preview and save.
322# You can also add custom .tmTheme files under $CODEX_HOME/themes.
323# theme = "catppuccin-mocha"
324
325# Internal tooltip state keyed by model slug. Usually managed by Codex.
326# [tui.model_availability_nux]
327# "gpt-5.4" = 1
328
329# Enable or disable analytics for this machine. When unset, Codex uses its default behavior.
330[analytics]
331enabled = true
332
280# Control whether users can submit feedback from `/feedback`. Default: true333# Control whether users can submit feedback from `/feedback`. Default: true
281[feedback]334[feedback]
282enabled = true335enabled = true
290# "hide_gpt-5.1-codex-max_migration_prompt" = true343# "hide_gpt-5.1-codex-max_migration_prompt" = true
291# model_migrations = { "gpt-4.1" = "gpt-5.1" }344# model_migrations = { "gpt-4.1" = "gpt-5.1" }
292 345
293# Suppress the warning shown when under-development feature flags are enabled.
294# suppress_unstable_features_warning = true
295
296################################################################################346################################################################################
297# Centralized Feature Flags (preferred)347# Centralized Feature Flags (preferred)
298################################################################################348################################################################################
299 349
300[features]350[features]
301# Leave this table empty to accept defaults. Set explicit booleans to opt in/out.351# Leave this table empty to accept defaults. Set explicit booleans to opt in/out.
302352shell_tool = true# shell_tool = true
303# apps = false353# apps = false
304# apps_mcp_gateway = false354# apps_mcp_gateway = false
305355# Deprecated legacy toggles; prefer the top-level `web_search` setting.# unified_exec = false
306356# web_search = false# shell_snapshot = false
307357# web_search_cached = false# multi_agent = false
308# web_search_request = false
309unified_exec = false
310shell_snapshot = false
311apply_patch_freeform = false
312# search_tool = false
313# personality = true358# personality = true
314359request_rule = true# use_linux_sandbox_bwrap = false
315360collaboration_modes = true# runtime_metrics = true
316361use_linux_sandbox_bwrap = false# powershell_utf8 = true
317362experimental_windows_sandbox = false# child_agents_md = false
318363elevated_windows_sandbox = false# sqlite = true
319364remote_models = false# fast_mode = true
320365runtime_metrics = false# enable_request_compression = true
321366powershell_utf8 = true# image_generation = false
322367child_agents_md = false# skill_mcp_dependency_install = true
368# skill_env_var_dependency_prompt = false
369# default_mode_request_user_input = false
370# artifact = false
371# prevent_idle_sleep = false
372# responses_websockets = false
373# responses_websockets_v2 = false
374# image_detail_original = false
323 375
324################################################################################376################################################################################
325# Define MCP servers under this table. Leave empty to disable.377# Define MCP servers under this table. Leave empty to disable.
341# tool_timeout_sec = 60.0 # optional; default 60.0 seconds393# tool_timeout_sec = 60.0 # optional; default 60.0 seconds
342# enabled_tools = ["search", "summarize"] # optional allow-list394# enabled_tools = ["search", "summarize"] # optional allow-list
343# disabled_tools = ["slow-tool"] # optional deny-list (applied after allow-list)395# disabled_tools = ["slow-tool"] # optional deny-list (applied after allow-list)
396# scopes = ["read:docs"] # optional OAuth scopes
397# oauth_resource = "https://docs.example.com/" # optional OAuth resource
344 398
345# --- Example: Streamable HTTP transport ---399# --- Example: Streamable HTTP transport ---
346# [mcp_servers.github]400# [mcp_servers.github]
353# startup_timeout_sec = 10.0 # optional407# startup_timeout_sec = 10.0 # optional
354# tool_timeout_sec = 60.0 # optional408# tool_timeout_sec = 60.0 # optional
355# enabled_tools = ["list_issues"] # optional allow-list409# enabled_tools = ["list_issues"] # optional allow-list
410# disabled_tools = ["delete_issue"] # optional deny-list
411# scopes = ["repo"] # optional OAuth scopes
356 412
357################################################################################413################################################################################
358# Model Providers414# Model Providers
359################################################################################415################################################################################
360 416
361# Built-ins include:417# Built-ins include:
362418# - openai (Responses API; requires login or OPENAI_API_KEY via auth flow)# - openai
363419# - oss (Chat Completions API; defaults to http://localhost:11434/v1)# - ollama
420# - lmstudio
364 421
365[model_providers]422[model_providers]
366 423
368# [model_providers.openaidr]425# [model_providers.openaidr]
369# name = "OpenAI Data Residency"426# name = "OpenAI Data Residency"
370# base_url = "https://us.api.openai.com/v1" # example with 'us' domain prefix427# base_url = "https://us.api.openai.com/v1" # example with 'us' domain prefix
371428# wire_api = "responses" # "responses" | "chat" (default varies)# wire_api = "responses" # only supported value
372# # requires_openai_auth = true # built-in OpenAI defaults to true429# # requires_openai_auth = true # built-in OpenAI defaults to true
373# # request_max_retries = 4 # default 4; max 100430# # request_max_retries = 4 # default 4; max 100
374# # stream_max_retries = 5 # default 5; max 100431# # stream_max_retries = 5 # default 5; max 100
375# # stream_idle_timeout_ms = 300000 # default 300_000 (5m)432# # stream_idle_timeout_ms = 300000 # default 300_000 (5m)
433# # supports_websockets = true # optional
376# # experimental_bearer_token = "sk-example" # optional dev-only direct bearer token434# # experimental_bearer_token = "sk-example" # optional dev-only direct bearer token
377# # http_headers = { "X-Example" = "value" }435# # http_headers = { "X-Example" = "value" }
378# # env_http_headers = { "OpenAI-Organization" = "OPENAI_ORGANIZATION", "OpenAI-Project" = "OPENAI_PROJECT" }436# # env_http_headers = { "OpenAI-Organization" = "OPENAI_ORGANIZATION", "OpenAI-Project" = "OPENAI_PROJECT" }
379 437
380438# --- Example: Azure (Chat/Responses depending on endpoint) ---# --- Example: Azure/OpenAI-compatible provider ---
381# [model_providers.azure]439# [model_providers.azure]
382# name = "Azure"440# name = "Azure"
383# base_url = "https://YOUR_PROJECT_NAME.openai.azure.com/openai"441# base_url = "https://YOUR_PROJECT_NAME.openai.azure.com/openai"
384442# wire_api = "responses" # or "chat" per endpoint# wire_api = "responses"
385# query_params = { api-version = "2025-04-01-preview" }443# query_params = { api-version = "2025-04-01-preview" }
386# env_key = "AZURE_OPENAI_API_KEY"444# env_key = "AZURE_OPENAI_API_KEY"
387445# # env_key_instructions = "Set AZURE_OPENAI_API_KEY in your environment"# env_key_instructions = "Set AZURE_OPENAI_API_KEY in your environment"
446# # supports_websockets = false
388 447
389# --- Example: Local OSS (e.g., Ollama-compatible) ---448# --- Example: Local OSS (e.g., Ollama-compatible) ---
390# [model_providers.ollama]449# [model_providers.ollama]
391# name = "Ollama"450# name = "Ollama"
392# base_url = "http://localhost:11434/v1"451# base_url = "http://localhost:11434/v1"
393452# wire_api = "chat"# wire_api = "responses"
453
454################################################################################
455# Apps / Connectors
456################################################################################
457
458# Optional per-app controls.
459[apps]
460# [_default] applies to all apps unless overridden per app.
461# [apps._default]
462# enabled = true
463# destructive_enabled = true
464# open_world_enabled = true
465#
466# [apps.google_drive]
467# enabled = false
468# destructive_enabled = false # block destructive-hint tools for this app
469# default_tools_enabled = true
470# default_tools_approval_mode = "prompt" # auto | prompt | approve
471#
472# [apps.google_drive.tools."files/delete"]
473# enabled = false
474# approval_mode = "approve"
394 475
395################################################################################476################################################################################
396# Profiles (named presets)477# Profiles (named presets)
399[profiles]480[profiles]
400 481
401# [profiles.default]482# [profiles.default]
402483# model = "gpt-5.2-codex"# model = "gpt-5.4"
403# model_provider = "openai"484# model_provider = "openai"
404# approval_policy = "on-request"485# approval_policy = "on-request"
405# sandbox_mode = "read-only"486# sandbox_mode = "read-only"
487# service_tier = "flex"
406# oss_provider = "ollama"488# oss_provider = "ollama"
407# model_reasoning_effort = "medium"489# model_reasoning_effort = "medium"
490# plan_mode_reasoning_effort = "high"
408# model_reasoning_summary = "auto"491# model_reasoning_summary = "auto"
409# model_verbosity = "medium"492# model_verbosity = "medium"
410493# personality = "friendly" # or "pragmatic" or "none"# personality = "pragmatic" # or "friendly" or "none"
411# chatgpt_base_url = "https://chatgpt.com/backend-api/"494# chatgpt_base_url = "https://chatgpt.com/backend-api/"
495# model_catalog_json = "./models.json"
496# model_instructions_file = "/absolute/or/relative/path/to/instructions.txt"
412# experimental_compact_prompt_file = "./compact_prompt.txt"497# experimental_compact_prompt_file = "./compact_prompt.txt"
413498# 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 }499# features = { unified_exec = false }
418 500
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################################################################################501################################################################################
430# Projects (trust levels)502# Projects (trust levels)
431################################################################################503################################################################################
432 504
433# Mark specific worktrees as trusted or untrusted.
434[projects]505[projects]
506# Mark specific worktrees as trusted or untrusted.
435# [projects."/absolute/path/to/project"]507# [projects."/absolute/path/to/project"]
436# trust_level = "trusted" # or "untrusted"508# trust_level = "trusted" # or "untrusted"
437 509
510################################################################################
511# Tools
512################################################################################
513
514[tools]
515# view_image = true
516
438################################################################################517################################################################################
439# OpenTelemetry (OTEL) - disabled by default518# OpenTelemetry (OTEL) - disabled by default
440################################################################################519################################################################################
448exporter = "none"527exporter = "none"
449# Trace exporter: none (default) | otlp-http | otlp-grpc528# Trace exporter: none (default) | otlp-http | otlp-grpc
450trace_exporter = "none"529trace_exporter = "none"
530# Metrics exporter: none | statsig | otlp-http | otlp-grpc
531metrics_exporter = "statsig"
451 532
452# Example OTLP/HTTP exporter configuration533# Example OTLP/HTTP exporter configuration
453# [otel.exporter."otlp-http"]534# [otel.exporter."otlp-http"]
457# [otel.exporter."otlp-http".headers]538# [otel.exporter."otlp-http".headers]
458# "x-otlp-api-key" = "${OTLP_TOKEN}"539# "x-otlp-api-key" = "${OTLP_TOKEN}"
459 540
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]541# [otel.exporter."otlp-http".tls]
474# ca-certificate = "certs/otel-ca.pem"542# ca-certificate = "certs/otel-ca.pem"
475# client-certificate = "/etc/codex/certs/client.pem"543# client-certificate = "/etc/codex/certs/client.pem"
476# client-private-key = "/etc/codex/certs/client-key.pem"544# client-private-key = "/etc/codex/certs/client-key.pem"
545
546# Example OTLP/gRPC trace exporter configuration
547# [otel.trace_exporter."otlp-grpc"]
548# endpoint = "https://otel.example.com:4317"
549# headers = { "x-otlp-meta" = "abc123" }
550
551################################################################################
552# Windows
553################################################################################
554
555[windows]
556# Native Windows sandbox mode (Windows only): unelevated | elevated
557sandbox = "unelevated"
477```558```