| 263 | #[derive(Debug, Serialize)] |
| 264 | #[serde(tag = "type")] |
| 265 | enum AnthropicContent { |
| 266 | #[serde(rename = "text")] |
| 267 | Text { text: String }, |
| 268 | } |
| 269 | |
| 270 | #[derive(Debug, Serialize)] |
| 271 | #[serde(tag = "type")] |
nothing calls this directly
no outgoing calls
no test coverage detected