消息中的内容块
| 527 | |
| 528 | @dataclass |
| 529 | class ContentBlock: |
| 530 | """消息中的内容块""" |
| 531 | block_type: str # "text" or "tool_use" |
| 532 | text: str = "" |
| 533 | tool_id: str = "" |
| 534 | tool_name: str = "" |
| 535 | tool_input: str = "" |
| 536 | |
| 537 | |
| 538 | @dataclass |
no outgoing calls
no test coverage detected