内容块
| 403 | |
| 404 | @dataclass |
| 405 | class ContentBlock: |
| 406 | """内容块""" |
| 407 | block_type: str # "text", "tool_use", "tool_result" |
| 408 | text: str = "" |
| 409 | tool_name: str = "" |
| 410 | tool_id: str = "" |
| 411 | input_str: str = "" |
| 412 | output: str = "" |
| 413 | is_error: bool = False |
| 414 | |
| 415 | |
| 416 | @dataclass |
no outgoing calls
no test coverage detected