Azure OpenAI model provider for the Daimon agent framework.
The API wire format is identical to OpenAI but uses a different URL structure and supports both API key and Microsoft Entra ID (Azure AD) bearer token authentication.
Example
use daimon_provider_azure::AzureOpenAi;
use daimon_core::Model;
let model = AzureOpenAi::new(
"https://my-resource.openai.azure.com",
"gpt-4o",
);