Skip to main content

Crate daimon_provider_azure

Crate daimon_provider_azure 

Source
Expand description

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

Structs§

AzureOpenAi
Azure OpenAI model provider.
AzureOpenAiEmbedding
Azure OpenAI embedding model.