(cls, text: str)
| 141 | |
| 142 | @classmethod |
| 143 | def text_block(cls, text: str) -> "MessageBlock": |
| 144 | return cls(type=MessageBlockType.TEXT, text=text) |
| 145 | |
| 146 | def describe(self) -> str: |
| 147 | """Human-friendly summary for logging.""" |
no outgoing calls
no test coverage detected