Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5502723
Added consolidated quickstart versions of BasicVoiceAssistant sample …
goergenj Oct 29, 2025
d20a1ce
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
a3adad1
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
5b45252
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
65c7b57
Update azure-sdk-for-net.csproj
goergenj Oct 29, 2025
1973045
Update Program.cs
goergenj Oct 29, 2025
698a4af
Delete Program.cs
goergenj Oct 29, 2025
c1ddc59
Updated based on review comments
goergenj Oct 29, 2025
0c899b0
Updated based on review comments
goergenj Oct 29, 2025
dcd2242
Fixing comments from review, cleaning up unrequired files and fixing …
goergenj Oct 29, 2025
997eff0
Renamed consolidated learn docs quickstart versions and moved them up…
goergenj Oct 31, 2025
3be18d6
Fixed review comment.
goergenj Oct 31, 2025
957bfa2
Fixed review comment.
goergenj Oct 31, 2025
dc41415
Removed NAudio unapproved dependency package.
goergenj Oct 31, 2025
9d6f76d
Update sdk/ai/Azure.AI.VoiceLive/samples/.gitignore
goergenj Oct 31, 2025
8eb4d04
Update sdk/ai/Azure.AI.VoiceLive/samples/AgentVoiceAssistantQuickstar…
goergenj Oct 31, 2025
a81208d
Update sdk/ai/Azure.AI.VoiceLive/samples/AgentVoiceAssistantQuickstar…
goergenj Oct 31, 2025
b4f98ef
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistantQuickstar…
goergenj Oct 31, 2025
a32cfcd
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistantQuickstar…
goergenj Oct 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
317 changes: 91 additions & 226 deletions sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/.gitignore

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"VoiceLive": {
"ApiKey": "your-api-key-here",
"Endpoint": "wss://api.voicelive.com/v1",
"Model": "gpt-4o-realtime-preview",
"Voice": "en-US-AvaNeural",
"Endpoint": "https://your-resource-name.services.ai.azure.com/",
"Model": "gpt-realtime",
"Voice": "en-US-Ava:DragonHDLatestNeural",
"Instructions": "You are a helpful AI assistant. Respond naturally and conversationally. Keep your responses concise but engaging."
},
"Logging": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>AgentVoiceAssistantQuickstart</AssemblyName>
<RootNamespace>Azure.AI.VoiceLive.Samples</RootNamespace>
<IsSamplesProject>true</IsSamplesProject>
<SupportsNetStandard20>false</SupportsNetStandard20>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity"/>
<PackageReference Include="NAudio" VersionOverride="2.2.1"/>
<PackageReference Include="Microsoft.Extensions.Configuration" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" VersionOverride="8.0.0"/>
<PackageReference Include="System.CommandLine" VersionOverride="2.0.0-beta4.22272.1" />
<PackageReference Include="System.Threading.Channels" VersionOverride="9.0.8"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\src\Azure.AI.VoiceLive.csproj" />
</ItemGroup>

<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<Target Name="OverwriteWithDevelopmentSettings" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<Copy SourceFiles="appsettings.development.json"
DestinationFiles="$(OutputPath)appsettings.json"
OverwriteReadOnlyFiles="true"
Condition="Exists('appsettings.development.json')" />
</Target>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<!-- Use only the public NuGet.org feed for standalone distribution -->
<add key="azure-sdk-for-net" value="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
Loading