feat(pydantic-ai): Add tool description to execute_tool spans#5596
Merged
ericapisani merged 27 commits intomasterfrom Mar 9, 2026
Merged
feat(pydantic-ai): Add tool description to execute_tool spans#5596ericapisani merged 27 commits intomasterfrom
ericapisani merged 27 commits intomasterfrom
Conversation
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.
Add the tool's description to
gen_ai.execute_toolspans via thegen_ai.tool.descriptionspan data attribute.When a pydantic-ai tool is defined with a docstring, that docstring becomes the tool's description in its
ToolDefinition. This PR surfaces that description in the corresponding Sentry span, making it easier to understand what each tool does when inspecting traces.The description is sourced from
tool.tool_def.descriptionon the internal tool object. If no description is available (e.g. the tool has no docstring), the attribute value is None.