Bases: BaseContent
Plain text content block.
type class-attribute instance-attribute
extra = Field(default_factory=dict)
get_text
Get text content.
Source code in autogen/llm_clients/models/content_blocks.py
| def get_text(self) -> str:
"""Get text content."""
return self.text
|