[cherry-pick] Fix missing reasoningEffort telemetry for Claude models#309646
Merged
bhavyaus merged 1 commit intorelease/1.116from Apr 13, 2026
Merged
[cherry-pick] Fix missing reasoningEffort telemetry for Claude models#309646bhavyaus merged 1 commit intorelease/1.116from
bhavyaus merged 1 commit intorelease/1.116from
Conversation
bhavyaus
approved these changes
Apr 13, 2026
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.
Cherry-pick of #309639 from
main.Cherry-pick of #308325.
Problem
The
reasoningEfforttelemetry property onresponse.successandresponse.errorevents was only reading fromrequestBody.reasoning?.effort, which is set by the Responses API path (OpenAI models).Claude models use the Messages API path, which sets effort via
requestBody.output_config?.effortinstead. As a result, reasoning effort was silently missing from telemetry for all Claude model requests.Fix
Added a fallback:
requestBody.reasoning?.effort ?? requestBody.output_config?.efforton bothresponse.successandresponse.errortelemetry events so the effort level is captured regardless of which API path is used.Impact
response.success— now logsreasoningEffortfor Claude modelsresponse.error— now logsreasoningEffortfor Claude modelsreasoning.effortpath is checked first)