Update _content_utils.py

This commit is contained in:
yucheng-berri 2026-07-11 17:46:57 -07:00 committed by Yucheng Zhu
parent 88064d4463
commit e3c935ec41

View file

@ -32,7 +32,7 @@ def is_text_content_call_type(call_type: str) -> bool:
return call_type in TEXT_CONTENT_CALL_TYPES
TEXT_PART_TYPES: frozenset[str] = frozenset({"text", "input_text", "output_text", "summary_text"})
TEXT_PART_TYPES: Frozenset[str] = frozenset({"text", "input_text", "output_text", "summary_text"})
def _iter_summary_texts(summary: Any) -> Iterator[str]: