daimon-provider-azure 0.16.0

Azure OpenAI provider for the Daimon AI agent framework
Documentation

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",
);