Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/amplifier_agent_cli/provider_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading