| 18 | |
| 19 | #[derive(Debug)] |
| 20 | pub struct AnthropicProvider { |
| 21 | client: Client, |
| 22 | config: AnthropicConfig, |
| 23 | models: Vec<ModelInfo>, |
| 24 | } |
| 25 | |
| 26 | impl AnthropicProvider { |
| 27 | pub fn new(api_key: impl Into<String>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected