Fix finish_reason logic in Azure AI client streaming response#6963
Merged
ekzhu merged 4 commits intomicrosoft:mainfrom Sep 16, 2025
Merged
Conversation
Contributor
Author
|
Hi, could any contributors review this PR ? Without this change, I have to change the local code when using azure_ai_client. |
ekzhu
approved these changes
Sep 16, 2025
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6963 +/- ##
=======================================
Coverage 80.95% 80.95%
=======================================
Files 237 237
Lines 18258 18258
=======================================
Hits 14780 14780
Misses 3478 3478
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Summary
This PR fixes a bug in the Azure AI client where the finish_reason logic for TOOL_CALLS was being processed after a potential None check, which could cause a mismatch when choice is None.
Changes
Bug Description
The original code had lines 557-558 checking \choice.finish_reason\ after line 554 where \inish_reason\ could be None and throw an exception. The logic should be moved to within the loop where \choice\ is guaranteed to exist, specifically after line 525 where \inish_reason\ is initially set.
Testing
Fixes the finish_reason mismatch bug when choice can be None in streaming responses.