| 297 | |
| 298 | #[derive(Debug, Deserialize)] |
| 299 | struct AnthropicResponse { |
| 300 | id: String, |
| 301 | model: String, |
| 302 | content: Vec<AnthropicResponseContent>, |
| 303 | usage: AnthropicResponseUsage, |
| 304 | } |
| 305 | |
| 306 | #[derive(Debug, Deserialize)] |
| 307 | struct AnthropicResponseContent { |
nothing calls this directly
no outgoing calls
no test coverage detected