🎙️ Demo repository for the Build a Voice-Enabled AI Agent in Minutes session at Microsoft Reactor AI Apps & Agents Dev Days (February 10, 2026). Brought to you by Microsoft & NVIDIA.
Local audio transcription using NVIDIA ASR models via the NeMo framework, organized into five scenarios:
| Scenario | Folder | Model | Use Case |
|---|---|---|---|
| 1. Simple CLI | scenario1/ | Parakeet (English) | Single file transcription |
| 2. Interactive Menu | scenario2/ | Parakeet (English) | Browse and select from local audio files |
| 3. Multilingual | scenario3/ | Canary-1B (Multilingual) | Spanish, English, German, French |
| 4. Client-Server | scenario4/ | Parakeet + Canary | REST API, .NET Aspire, Blazor web app, NIM LLM integration |
| 5. Voice Agent | scenario5/ | Parakeet + FastPitch + HiFiGAN + TinyLlama | Real-time voice agent with ASR, TTS, and Smart Mode LLM |
# Setup (Python 3.10-3.12 only)
py -3.12 -m venv venv && venv\Scripts\activate # Windows
pip install torch --index-url https://download.pytorch.org/whl/cu121 # GPU
pip install -r requirements.txt && python fix_lhotse.py
# Scenario 1: Transcribe a file
python scenario1/transcribe.py audio.mp3
# Scenario 3: Multilingual
python scenario3/transcribe.py audio.mp3 es
# Scenario 4: Client-server
cd scenario4/AppHost && dotnet run
# Scenario 5: Voice Agent
cd scenario5
pip install -r requirements.txt
python app.py
# Open http://localhost:8000 in your browser
| Document | Description |
|---|---|
| docs/QUICKREF.md | Quick command reference for all scenarios |
| docs/USAGE_EXAMPLES.md | Detailed examples and workflows |
| docs/IMPLEMENTATION_SUMMARY.md | Implementation details (Scenarios 1–3) |
| scenario4/README.md | Scenario 4 full documentation |
| scenario4/docs/ | Architecture, deployment, testing guides |
| scenario5/README.md | Scenario 5 voice agent documentation |
The slides/ folder contains visual references from the Microsoft × NVIDIA session, along with curated link inventories for each slide.
| Slide | Description |
|---|---|
| Slide 6 — Azure AI Platform with NVIDIA Technologies | Overview of the joint Microsoft + NVIDIA stack across Build, Data, Models, Deployment, and Operations |
Python
40.4%
HTML
28.7%
C#
19.8%
Bicep
3.2%
CSS
3.0%
PowerShell
2.3%
Shell
1.7%
🎙️ Demo repository for the Build a Voice-Enabled AI Agent in Minutes session at Microsoft Reactor AI Apps & Agents Dev Days (February 10, 2026). Brought to you by Microsoft & NVIDIA.
Local audio transcription using NVIDIA ASR models via the NeMo framework, organized into five scenarios:
| Scenario | Folder | Model | Use Case |
|---|---|---|---|
| 1. Simple CLI | scenario1/ | Parakeet (English) | Single file transcription |
| 2. Interactive Menu | scenario2/ | Parakeet (English) | Browse and select from local audio files |
| 3. Multilingual | scenario3/ | Canary-1B (Multilingual) | Spanish, English, German, French |
| 4. Client-Server | scenario4/ | Parakeet + Canary | REST API, .NET Aspire, Blazor web app, NIM LLM integration |
| 5. Voice Agent | scenario5/ | Parakeet + FastPitch + HiFiGAN + TinyLlama | Real-time voice agent with ASR, TTS, and Smart Mode LLM |
# Setup (Python 3.10-3.12 only)
py -3.12 -m venv venv && venv\Scripts\activate # Windows
pip install torch --index-url https://download.pytorch.org/whl/cu121 # GPU
pip install -r requirements.txt && python fix_lhotse.py
# Scenario 1: Transcribe a file
python scenario1/transcribe.py audio.mp3
# Scenario 3: Multilingual
python scenario3/transcribe.py audio.mp3 es
# Scenario 4: Client-server
cd scenario4/AppHost && dotnet run
# Scenario 5: Voice Agent
cd scenario5
pip install -r requirements.txt
python app.py
# Open http://localhost:8000 in your browser
| Document | Description |
|---|---|
| docs/QUICKREF.md | Quick command reference for all scenarios |
| docs/USAGE_EXAMPLES.md | Detailed examples and workflows |
| docs/IMPLEMENTATION_SUMMARY.md | Implementation details (Scenarios 1–3) |
| scenario4/README.md | Scenario 4 full documentation |
| scenario4/docs/ | Architecture, deployment, testing guides |
| scenario5/README.md | Scenario 5 voice agent documentation |
The slides/ folder contains visual references from the Microsoft × NVIDIA session, along with curated link inventories for each slide.
| Slide | Description |
|---|---|
| Slide 6 — Azure AI Platform with NVIDIA Technologies | Overview of the joint Microsoft + NVIDIA stack across Build, Data, Models, Deployment, and Operations |
Python
40.4%
HTML
28.7%
C#
19.8%
Bicep
3.2%
CSS
3.0%
PowerShell
2.3%
Shell
1.7%