set_config
Set configuration settings by specifying a dotted-path and value, or providing a patch object with multiple updates. Changes apply immediately.
Instructions
Patch the config store. Pass EITHER {path, value} for a single dotted-path write (e.g. path="engine.model", value="small"), OR {patch: {...}} for a flat object of dotted-path → value pairs applied in order. Changes persist immediately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Dotted path (e.g. "engine.model"). | |
| patch | No | Object of dotted-path → value, applied in iteration order. | |
| value | No | Value for the single-path form. |