We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96df8c1 commit 99b1ddbCopy full SHA for 99b1ddb
sentry_sdk/integrations/openai_agents/utils.py
@@ -173,6 +173,8 @@ def _create_mcp_execute_tool_spans(span, result):
173
execute_tool_span.set_data(
174
SPANDATA.GEN_AI_TOOL_INPUT, output.arguments
175
)
176
- span.set_data(SPANDATA.GEN_AI_TOOL_OUTPUT, output.output)
+ execute_tool_span.set_data(
177
+ SPANDATA.GEN_AI_TOOL_OUTPUT, output.output
178
+ )
179
if output.error:
180
execute_tool_span.set_status(SPANSTATUS.ERROR)
0 commit comments