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