docs: fix multimodal disable-image-processing flag hierarchy (#1445)
The multimodal docs told users to run `--templates.disable_image_processing=true` to disable image processing. That flag is rejected by the CLI: `disable_image_processing` lives on TemplateConfig, which is only reachable under `agent.templates`, and the top-level run config sets `extra="forbid"`, so the unprefixed flag fails parsing with `unrecognized arguments`. Add the missing `agent.` prefix so the documented command matches the config hierarchy (and the correct YAML shown earlier on the same page): `--agent.templates.disable_image_processing=true`.
This commit is contained in:
@@ -154,4 +154,4 @@ The `web_browser` bundle provides tools for:
|
||||
|
||||
We've enabled multimodal processing when `--instances.type=swe-bench --instances.subset=multimodal` are set.
|
||||
|
||||
To disable this behavior, you must set `--templates.disable_image_processing=true`.
|
||||
To disable this behavior, you must set `--agent.templates.disable_image_processing=true`.
|
||||
Reference in New Issue
Block a user