diff --git a/src/amplifier_agent_cli/provider_sources.py b/src/amplifier_agent_cli/provider_sources.py index a8505624..c3f19252 100644 --- a/src/amplifier_agent_cli/provider_sources.py +++ b/src/amplifier_agent_cli/provider_sources.py @@ -60,7 +60,11 @@ class _CatalogEntry(TypedDict): "module": "provider-openai", "source": "git+https://github.com/microsoft/amplifier-module-provider-openai@main", "env_var": "OPENAI_API_KEY", - "default_model": "gpt-4o", + # gpt-5.5 chosen so the bundle's default `extended_thinking: true` lands + # on a model that actually accepts the resulting `reasoning.effort` + # parameter. With gpt-4o (non-reasoning), the OpenAI API 400s on every + # turn out of the box. Consumers can override via bundle config. + "default_model": "gpt-5.5", }, "azure-openai": { "module": "provider-azure-openai",