1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Configuration types for Azure AI Inference provider.
use ;
/// Configuration for Azure AI Inference endpoints.
///
/// Azure AI Inference uses a dedicated endpoint URL and API key for
/// authentication, rather than a shared base URL. Each endpoint hosts
/// a specific model deployment (e.g., Cohere, Llama, Mistral).
///
/// # Example
///
/// ```rust,ignore
/// use adk_model::azure_ai::AzureAIConfig;
///
/// let config = AzureAIConfig::new(
/// "https://my-endpoint.eastus.inference.ai.azure.com",
/// "my-api-key",
/// "meta-llama-3.1-8b-instruct",
/// );
/// ```