Commits
Click on a commit to change the comparison rangefix(core): preserve Field(description=...) in @tool decorator
When using Annotated[type, Field(description='...')] syntax with the
@tool decorator, the field descriptions were being lost during schema
generation. This fix extends _get_annotation_description() to also
check for FieldInfo objects and extract their description attribute.
Fixes #34247