| 186 | |
| 187 | |
| 188 | class Message(BaseModel): |
| 189 | role: Literal["user", "assistant"] |
| 190 | content: Union[ |
| 191 | str, |
| 192 | List[ |
| 193 | Union[ |
| 194 | ContentBlockText, |
| 195 | ContentBlockImage, |
| 196 | ContentBlockToolUse, |
| 197 | ContentBlockToolResult, |
| 198 | ] |
| 199 | ], |
| 200 | ] |
| 201 | |
| 202 | |
| 203 | class Tool(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected