| 230 | |
| 231 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 232 | pub struct AnthropicEvent { |
| 233 | #[serde(rename = "type")] |
| 234 | pub event_type: String, |
| 235 | pub index: Option<u32>, |
| 236 | pub delta: Option<AnthropicDelta>, |
| 237 | pub content_block: Option<AnthropicContentBlock>, |
| 238 | pub message: Option<AnthropicMessage>, |
| 239 | } |
| 240 | |
| 241 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 242 | pub struct AnthropicDelta { |
nothing calls this directly
no outgoing calls
no test coverage detected