fix(autogen-ext): preserve Azure model info in component config - #8113
Open
YZJF,YCDG,DJLY,ZZZB (YZJF) wants to merge 1 commit into
Open
fix(autogen-ext): preserve Azure model info in component config#8113YZJF,YCDG,DJLY,ZZZB (YZJF) wants to merge 1 commit into
YZJF,YCDG,DJLY,ZZZB (YZJF) wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
Before this change,
AzureOpenAIChatCompletionClientremovedmodel_infoandthe deprecated
model_capabilitiesfrom the SDK arguments before saving_raw_config. As a result,dump_component()omitted the model capabilities requiredto load a custom Azure deployment whose name is not in AutoGen's built-in model
table.
Save the original constructor configuration for component serialization, while
continuing to pass the filtered arguments to the Azure SDK. This mirrors the
existing
OpenAIChatCompletionClientbehavior introduced in #5315.The regression test uses a fake endpoint and key, serializes an unknown Azure
deployment to JSON, then loads it back and verifies that
model_infoispreserved. It makes no network model call.
Related issue number
N/A — this is an Azure parity gap discovered while auditing component
serialization; no matching open issue or PR was found.
Checks
Local validation
uv run --no-sync pytest packages/autogen-ext/tests/models/test_openai_model_client.py -k azure_openai_chat_completion_client_serializes_model_info -q(1 passed)uv run --no-sync pytest packages/autogen-ext/tests/models/test_openai_model_client.py -q(54 passed, 33 skipped)uv run --no-sync ruff format --check packages/autogen-ext/src/autogen_ext/models/openai/_openai_client.py packages/autogen-ext/tests/models/test_openai_model_client.pyuv run --no-sync ruff check packages/autogen-ext/src/autogen_ext/models/openai/_openai_client.py packages/autogen-ext/tests/models/test_openai_model_client.pyI also attempted the full
autogen-extMyPy command; this dependency subset reports existing missing-optional-integration type errors in unrelated Semantic Kernel, Ollama, and llama-cpp files, not in the changed files.AI assistance
This change and regression test were prepared with AI assistance. The local validation commands above were run against this branch.