(text: str)
| 81 | |
| 82 | @staticmethod |
| 83 | def system_text(text: str) -> "ConversationMessage": |
| 84 | return ConversationMessage(role="system", blocks=(TextBlock(text=text),)) |
| 85 | |
| 86 | @staticmethod |
| 87 | def tool_result(tool_use_id: str, tool_name: str, output: str, is_error: bool = False) -> "ConversationMessage": |
no test coverage detected