Azure AI Foundry Core
Core types, authentication, and HTTP client for the Azure AI Foundry Rust SDK.
This crate provides the foundational building blocks used by all other
azure_ai_foundry_* crates. You typically won't use this crate directly
unless you're building a custom integration.
Authentication
The SDK supports Microsoft Entra ID (Azure AD) authentication via
[azure_identity]. API key authentication is also supported for
the OpenAI-compatible endpoint.
use FoundryClient;
use FoundryCredential;
async