| 256 | |
| 257 | #[derive(Debug, Serialize)] |
| 258 | struct AnthropicMessage { |
| 259 | role: String, |
| 260 | content: Vec<AnthropicContent>, |
| 261 | } |
| 262 | |
| 263 | #[derive(Debug, Serialize)] |
| 264 | #[serde(tag = "type")] |
nothing calls this directly
no outgoing calls
no test coverage detected