diff --git a/docs/config.md b/docs/config.md index 1175a986..90671ce9 100644 --- a/docs/config.md +++ b/docs/config.md @@ -347,11 +347,13 @@ Use the optional `[tools]` table to toggle built-in tools that the agent may cal ```toml [tools] -web_search = true # allow Codex to issue first-party web searches without prompting you +web_search = true # allow Codex to issue first-party web searches without prompting you (deprecated) view_image = false # disable image uploads (they're enabled by default) ``` -`web_search` is also recognized under the legacy name `web_search_request`. The `view_image` toggle is useful when you want to include screenshots or diagrams from your repo without pasting them manually. Codex still respects sandboxing: it can only attach files inside the workspace roots you allow. +`web_search` is deprecated; use the `web_search_request` feature flag instead. + +The `view_image` toggle is useful when you want to include screenshots or diagrams from your repo without pasting them manually. Codex still respects sandboxing: it can only attach files inside the workspace roots you allow. ### approval_presets @@ -917,6 +919,7 @@ Valid values: | `sandbox_workspace_write.exclude_slash_tmp` | boolean | Exclude `/tmp` from writable roots (default: false). | | `notify` | array | External program for notifications. | | `instructions` | string | Currently ignored; use `experimental_instructions_file` or `AGENTS.md`. | +| `features.` | boolean | See [feature flags](#feature-flags) for details | | `mcp_servers..command` | string | MCP server launcher command (stdio servers only). | | `mcp_servers..args` | array | MCP server args (stdio servers only). | | `mcp_servers..env` | map | MCP server env vars (stdio servers only). | @@ -956,7 +959,7 @@ Valid values: | `experimental_instructions_file` | string (path) | Replace built‑in instructions (experimental). | | `experimental_use_exec_command_tool` | boolean | Use experimental exec command tool. | | `projects..trust_level` | string | Mark project/worktree as trusted (only `"trusted"` is recognized). | -| `tools.web_search` | boolean | Enable web search tool (alias: `web_search_request`) (default: false). | +| `tools.web_search` | boolean | Enable web search tool (deprecated) (default: false). | | `tools.view_image` | boolean | Enable or disable the `view_image` tool so Codex can attach local image files from the workspace (default: true). | | `forced_login_method` | `chatgpt` \| `api` | Only allow Codex to be used with ChatGPT or API keys. | | `forced_chatgpt_workspace_id` | string (uuid) | Only allow Codex to be used with the specified ChatGPT workspace. |