Ananke.Federation.Azure 0.8.1

dotnet add package Ananke.Federation.Azure --version 0.8.1
                    
NuGet\Install-Package Ananke.Federation.Azure -Version 0.8.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ananke.Federation.Azure" Version="0.8.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ananke.Federation.Azure" Version="0.8.1" />
                    
Directory.Packages.props
<PackageReference Include="Ananke.Federation.Azure" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ananke.Federation.Azure --version 0.8.1
                    
#r "nuget: Ananke.Federation.Azure, 0.8.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ananke.Federation.Azure@0.8.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ananke.Federation.Azure&version=0.8.1
                    
Install as a Cake Addin
#tool nuget:?package=Ananke.Federation.Azure&version=0.8.1
                    
Install as a Cake Tool

Ananke.Federation.Azure

Azure AI Agent Service adapter for Ananke Federation. Deploy Ananke workflow manifests to Azure AI Foundry, monitor running agents, and route executions through Azure-hosted models.

What this package provides

Type Purpose
AzureAgentDeployer IFederationDeployer — creates/updates/deletes Azure AI agents from a WorkflowManifest via AgentAdministrationClient
AzureWorkflowHost IWorkflowHost — manages cells as Azure AI agents; Start deploys, StopAsync tears down
AzureRemoteCellMonitor IRemoteCellMonitor — polls health and metrics from Azure AI agent deployments
AzureAgentCredentialProvider IFederationCredentialProvider — resolves AgentAdministrationClient via DefaultAzureCredential (Entra ID)
AzureModelMapper IModelMapper — maps manifest model references to Azure-hosted model deployment names; OpenAI models pass through directly
AzureToolSchemaTranslator Translates ToolDefinitions to DeclarativeAgentDefinition JSON fragments (function, code_interpreter, bing_grounding, file_search)
AzureSystemPromptCompiler ISystemPromptCompiler — compiles a system prompt from a manifest for Azure AI Agent Service
AzureAgentValidator IPlatformValidator — live credential and model availability checks against Azure APIs

Authentication

This adapter uses Entra ID via DefaultAzureCredential. Provide your Azure AI Foundry project endpoint:

var credentials = new AzureAgentCredentialProvider(
    new Uri("https://<resource>.services.ai.azure.com/api/projects/<project>"));

In local development, az login or a service principal set via environment variables (AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, AZURE_TENANT_ID) both work.

Quick start

var credentials = new AzureAgentCredentialProvider(new Uri("https://..."));
var registry = new InMemoryDeploymentRegistry();

var deployer = new AzureAgentDeployer(credentials, registry);
DeploymentRecord record = await deployer.DeployAsync(manifest, toolKit, new DeployOptions
{
    DeploymentId = "my-agent-v1",
    Platform = "azure-ai"
});

Platform-native tools

Use ToolBuilder + AzureToolSchemaTranslator.Capabilities constants for discoverable platform-native tool wiring:

var tool = ToolBuilder.Define("web_search")
    .PlatformNative("azure-ai", AzureToolSchemaTranslator.Capabilities.BingGrounding)
    .Build();

Platform-native capabilities not in the Capabilities class are passed through verbatim — Azure validates them at deploy time.

Model mapping

AzureModelMapper maps any Ananke model reference to its Azure-hosted equivalent. OpenAI models pass through unchanged; other providers are mapped to the nearest OpenAI equivalent available on Azure AI Foundry.

Monitoring

AzureRemoteCellMonitor currently returns baseline health metrics. Azure Monitor integration for token/latency/error trend data will be added in a future release.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.1 31 5/9/2026
0.8.0 35 5/9/2026