You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's still some debate about whether we want to expose
`tools.view_image` or `feature.view_image` so those are left unchanged
for now, but this old `include_view_image_tool` config is good-to-go.
Also updated the doc to reflect that `view_image` tool is now by default
true.
Copy file name to clipboardExpand all lines: docs/config.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -312,12 +312,12 @@ Though using this option may also be necessary if you try to use Codex in enviro
312
312
313
313
### tools.\*
314
314
315
-
Use the optional `[tools]` table to toggle built-in tools that the agent may call. Both keys default to `false` (tools stay disabled) unless you opt in:
315
+
Use the optional `[tools]` table to toggle built-in tools that the agent may call. `web_search` stays off unless you opt in, while `view_image` is now enabled by default:
316
316
317
317
```toml
318
318
[tools]
319
319
web_search = true# allow Codex to issue first-party web searches without prompting you
320
-
view_image = true# let Codex attach local images (paths in your workspace) to the model request
320
+
view_image = false# disable image uploads (they're enabled by default)
321
321
```
322
322
323
323
`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.
@@ -926,7 +926,7 @@ Valid values:
926
926
|`experimental_use_exec_command_tool`| boolean | Use experimental exec command tool. |
927
927
|`projects.<path>.trust_level`| string | Mark project/worktree as trusted (only `"trusted"` is recognized). |
0 commit comments