| 11 | input: str = '' |
| 12 | |
| 13 | class TextContentBlock(ContentBlock): |
| 14 | type: Literal['text'] = 'text' |
| 15 | text: str = '' |
| 16 | |
| 17 | class ToolResultContentBlock(ContentBlock): |
| 18 | type: Literal['tool_result'] = 'tool_result' |
no outgoing calls
no test coverage detected