config-sample.md +25 −2
130# - workspace-write130# - workspace-write
131# - danger-full-access (no sandbox; extremely risky)131# - danger-full-access (no sandbox; extremely risky)
132sandbox_mode = "read-only"132sandbox_mode = "read-only"
133133# Named permissions profile to apply by default. Required before using [permissions.<name>].# Named permissions profile to apply by default. Built-ins:
134134# default_permissions = "workspace"# :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"
135 137
136# Example filesystem profile. Use `"none"` to deny reads for exact paths or138# Example filesystem profile. Use `"none"` to deny reads for exact paths or
137# glob patterns. On platforms that need pre-expanded glob matches, set139# glob patterns. On platforms that need pre-expanded glob matches, set
358# You can also add custom .tmTheme files under $CODEX_HOME/themes.360# You can also add custom .tmTheme files under $CODEX_HOME/themes.
359# theme = "catppuccin-mocha"361# theme = "catppuccin-mocha"
360 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
361# Internal tooltip state keyed by model slug. Usually managed by Codex.372# Internal tooltip state keyed by model slug. Usually managed by Codex.
362# [tui.model_availability_nux]373# [tui.model_availability_nux]
363# "gpt-5.4" = 1374# "gpt-5.4" = 1
468# - openai479# - openai
469# - ollama480# - ollama
470# - lmstudio481# - lmstudio
482# - amazon-bedrock
471# These IDs are reserved. Use a different ID for custom providers.483# These IDs are reserved. Use a different ID for custom providers.
472 484
473[model_providers]485[model_providers]
474 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
475# --- Example: OpenAI data residency with explicit base URL or headers ---494# --- Example: OpenAI data residency with explicit base URL or headers ---
476# [model_providers.openaidr]495# [model_providers.openaidr]
477# name = "OpenAI Data Residency"496# name = "OpenAI Data Residency"
542# { type = "connector", id = "gmail" },561# { type = "connector", id = "gmail" },
543# { type = "plugin", id = "figma@openai-curated" },562# { type = "plugin", id = "figma@openai-curated" },
544# ]563# ]
564# disabled_tools = [
565# { type = "plugin", id = "slack@openai-curated" },
566# { type = "connector", id = "connector_googlecalendar" },
567# ]
545 568
546################################################################################569################################################################################
547# Profiles (named presets)570# Profiles (named presets)