| 240 | |
| 241 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 242 | pub struct AnthropicDelta { |
| 243 | #[serde(rename = "type")] |
| 244 | pub delta_type: Option<String>, |
| 245 | pub text: Option<String>, |
| 246 | pub partial_json: Option<String>, |
| 247 | pub stop_reason: Option<String>, |
| 248 | } |
| 249 | |
| 250 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 251 | pub struct AnthropicContentBlock { |
nothing calls this directly
no outgoing calls
no test coverage detected