diff options
Diffstat (limited to 'internal/appconfig/config_merge.go')
| -rw-r--r-- | internal/appconfig/config_merge.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/appconfig/config_merge.go b/internal/appconfig/config_merge.go index 7a99c94..f3557c1 100644 --- a/internal/appconfig/config_merge.go +++ b/internal/appconfig/config_merge.go @@ -141,6 +141,9 @@ func (a *App) mergeProviderFields(other *App) { if other.AnthropicTemperature != nil { // allow explicit 0.0 a.AnthropicTemperature = other.AnthropicTemperature } + if s := strings.TrimSpace(other.YouSearchResearchEffort); s != "" { + a.YouSearchResearchEffort = s + } } // mergeSurfaceModels copies per-surface model and temperature overrides. |
