| 249 | |
| 250 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 251 | pub struct AnthropicContentBlock { |
| 252 | #[serde(rename = "type")] |
| 253 | pub block_type: String, |
| 254 | pub id: Option<String>, |
| 255 | pub name: Option<String>, |
| 256 | pub input: Option<serde_json::Value>, |
| 257 | } |
| 258 | |
| 259 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 260 | pub struct AnthropicMessage { |
nothing calls this directly
no outgoing calls
no test coverage detected