Dev & Engineering ✓ Microsoft · Official azure-voice-livedotnetwebsocketspeech-to-speechvoice-assistantfunction-callingvoice-activity-detectionrealtime-audio

Azure Voice Live for .NET

Build real-time, bidirectional voice AI applications with the Azure .NET SDK.

FollowSkills review · FSRS-2.0
Use with care
46/ 100 5-point scale 2.3 / 5
1 2 3 4 5 6
1Trust14 / 25 · 2.8/5

The document presents Entra, managed identity, and API-key authentication and advises against hardcoded keys. However, it does not disclose the flow or retention of audio, text, and function-call data, sensitive-data handling, least-privilege details, user confirmation, external-effect controls, or rollback. The function-calling example invokes an external-service pattern without validation, so points are deducted.

2Reliability6 / 20 · 1.5/5

Core session, event-loop, audio, and function-calling paths are illustrated, and an error event is handled. However, there are no skill-specific tests, reproducible builds, or robust abnormal-input strategies; model and version statements may be inconsistent, and resource disposal, cancellation, reconnect, and complete event handling are underspecified. Static-review calibration limits this dimension to 10 or less.

3Adaptability8 / 15 · 2.7/5

Triggers, audience, and real-time voice scenarios are reasonably clear, covering .NET, WebSockets, VAD, function calling, and audio configuration. Non-fit boundaries, input/output contracts, and platform limitations are not declared, and Chinese-language voice support or mainland-China network reachability is not addressed. The core function depends on Azure services whose regional availability is unverified, so points are deducted.

4Convention9 / 15 · 3.0/5

The skill includes installation, environment variables, authentication, workflow, type reference, best practices, error handling, audio configuration, and references. MIT licensing, author, and version metadata are clear. Changelog, maintenance ownership and update path, compatibility matrix, FAQ, troubleshooting, version pinning, and known limitations are incomplete; the current-version claim is not evidenced in the supplied files.

5Effectiveness6 / 15 · 2.0/5

The material can guide a basic Voice Live .NET session and includes reusable code examples. It does not provide a complete runnable application, and audio I/O, validation, reconnection, cancellation, concurrency, function-argument validation, and production deployment require substantial follow-up. SDK compatibility is not confirmed by execution evidence in the supplied files. Static-review calibration limits this dimension to 7 or less.

6Verifiability3 / 10 · 1.5/5

The skill lists NuGet, API, GitHub, and Quickstart references, while the repository supplies general CI, evaluation workflows, and harness tests. The supplied material contains no skill-specific test suite, successful run output, or third-party execution evidence, so key SDK claims cannot be independently reproduced from static reading. Static-review calibration limits this dimension to 5 or less.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Do not treat the snippets as verified production-compilable code; pin and confirm the Azure.AI.VoiceLive version, deployment name, endpoint format, and API types.
  • Before enabling function calls or external services, add argument validation, authorization, user confirmation, timeouts, auditing, and recovery, and avoid logging raw audio, credentials, or sensitive conversations.
  • Verify service reachability, compliance, and data-residency requirements for the target region and mainland-China network environment before adoption.
See the full review method →

What does this skill do, and when should you use it?

This skill is for .NET developers using the Azure.AI.VoiceLive SDK. It explains how to create VoiceLiveSession WebSocket connections and configure voices, audio formats, turn detection, and text/audio modalities. It covers Microsoft Entra credentials and API-key authentication, event streaming, user messages, audio transmission, and function calling. It fits voice assistants, real-time speech-to-speech experiences, and voice chatbots, provided you have an Azure Voice Live endpoint, a model deployment, and the required Azure role.

Provides installation commands for Azure.AI.VoiceLive, Azure.Identity, and NAudio; documents endpoint, model, voice, and authentication environment variables; shows how to create VoiceLiveClient, start and configure VoiceLiveSession, process audio deltas, text deltas, function calls, errors, and completed responses; and demonstrates sending user messages, starting responses, transmitting audio, and returning function-call output.

  1. An Azure .NET developer building a real-time voice assistant can use it to configure a bidirectional WebSocket session and spoken responses.
  2. A team implementing speech-to-speech conversation can use its PCM16 audio, text streaming, and response-event patterns.
  3. A developer adding external actions such as weather lookup can follow its function-definition, argument-parsing, and result-return workflow.
  4. A .NET developer implementing natural turn-taking can configure AzureSemanticVadTurnDetection with thresholds, prefix padding, and silence duration.

What are this skill's strengths and limitations?

Pros
  • Provides a focused end-to-end foundation for the Azure.AI.VoiceLive .NET SDK, from installation and authentication through the event loop.
  • Covers bidirectional WebSocket sessions, real-time audio, text streaming, and function calling.
  • Includes examples for DefaultAzureCredential, voice selection, turn detection, and error handling.
  • Identifies stable v1.0.0 and preview v1.1.0-beta.1 versions.
Limitations
  • It targets .NET only and does not apply to the repository’s Python, TypeScript, Java, or Rust skills.
  • It requires an Azure Voice Live endpoint and model deployment; pricing and quota information are not provided.
  • Audio capture and playback depend on NAudio or another audio library, but no complete device implementation is included.
  • The source does not show independent test results for this individual skill.

How do you install this skill?

Run npx skills add microsoft/skills and select azure-ai-voicelive-dotnet in the installation wizard. The skill is installed in the selected agent directory, such as .github/skills/ for GitHub Copilot. In the .NET project, run dotnet add package Azure.AI.VoiceLive and dotnet add package Azure.Identity; install dotnet add package NAudio when audio capture or playback is needed.

How do you use this skill?

In an Agent Skills-compatible coding agent, make a .NET request containing a trigger such as “voice live” or “real-time voice.” Follow the skill’s examples to create VoiceLiveClient, start a VoiceLiveSession, configure the model, voice, modalities, and audio formats, then process audio, text, function-call, and error events through GetUpdatesAsync(). For Entra authentication, assign the Cognitive Services User role; for API-key authentication, configure the documented key variable.

How does this skill compare with similar options?

Compared with Microsoft.CognitiveServices.Speech, this skill focuses on Azure.AI.VoiceLive real-time bidirectional voice and speech-to-speech interaction; the source lists Speech SDK for speech-to-text and text-to-speech. NAudio is an auxiliary audio capture/playback library rather than a comparable voice AI SDK.

FAQ

What permission is required for Entra authentication?
The Azure resource must have the `Cognitive Services User` role assigned.
Do I have to use an API key?
No. The skill documents both Microsoft Entra token credentials and AzureKeyCredential, and recommends DefaultAzureCredential as the preferred pattern.
How should I handle “Cancellation failed: no active response”?
The example treats an error containing that message as benign and ignorable; other errors should be surfaced or handled.
Does this skill include a complete frontend or audio-device application?
No. It provides SDK session, event, and audio-format examples; audio capture or playback requires NAudio or another audio library.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Voice Live for Python

Guides Python developers in building real-time, bidirectional voice AI applications on Azure.

Dev & Engineering ✓ Microsoft · Official

Azure Voice Live for TypeScript

Build real-time, bidirectional voice assistants with Azure in TypeScript.

Dev & Engineering ✓ Microsoft · Official

Azure AI VoiceLive for Java

Build real-time, bidirectional AI voice conversations in Java over WebSocket.

Dev & Engineering ✓ Microsoft · Official

Azure OpenAI for .NET

Gives coding agents practical .NET patterns for Azure OpenAI integrations.

Dev & Engineering ✓ Microsoft · Official

Azure Persistent Agents for .NET

A practical .NET playbook for building and operating Azure AI persistent agents.

Dev & Engineering ✓ Microsoft · Official

Azure Realtime Podcast Studio

Turn text into playable podcast-style audio with Azure OpenAI Realtime API.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

Build .NET location features for search, routing, maps, geolocation, and weather.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB ARM for .NET

Provision and manage Azure Cosmos DB resources from .NET through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Workspace Manager

Provision and manage Microsoft Playwright Testing workspaces with .NET and Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Azure Event Grid for .NET

Practical .NET guidance for publishing, receiving, and processing Azure Event Grid events.

Dev & Engineering ✓ Microsoft · Official

Fabric Capacity Manager for .NET

Manage Microsoft Fabric capacities programmatically through Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Microsoft Docs Researcher

Ground coding agents in official Microsoft documentation for concepts, tutorials, configuration, limits, and best practices.

Dev & Engineering ✓ Microsoft · Official

MongoDB Atlas Azure ARM Manager

Helps .NET developers manage MongoDB Atlas organizations through Azure Marketplace and Azure ARM.

Dev & Engineering ✓ Microsoft · Official

Azure AI Search for .NET

Build .NET search applications with practical Azure AI Search patterns for full-text, vector, semantic, and hybrid retrieval.

Dev & Engineering ✓ Microsoft · Official

Azure Web PubSub for Python

Build Azure WebSocket messaging and publish-subscribe workflows for Python applications.

Dev & Engineering ✓ Microsoft · Official

Arize AI Azure Management for .NET

Guides .NET developers through Azure-based management of Arize AI observability resources.

Dev & Engineering ✓ Microsoft · Official

Azure Durable Task ARM for .NET

Guides .NET developers through code-based provisioning and management of Durable Task Scheduler resources.

Dev & Engineering ✓ Microsoft · Official

MCP Server Development Guide

A practical guide to building clear, testable MCP servers that let LLMs work with external APIs.

Dev & Engineering ✓ Microsoft · Official

Azure API Center for .NET

Manage Azure API inventories, governance, versions, and deployments with .NET.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for .NET

Provision and govern Azure API Management resources from .NET.

Related skills