Decode a data Part's data field into a native Python value.
Source code in autogen/beta/a2a/mappers/parts.py
| def part_data_to_python(part: Part) -> Any:
"""Decode a data Part's ``data`` field into a native Python value."""
return _value_to_python(part.data)
|