Navbot.RealtimeApi.Dotnet.SDK.WPF 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Navbot.RealtimeApi.Dotnet.SDK.WPF --version 1.0.2
                    
NuGet\Install-Package Navbot.RealtimeApi.Dotnet.SDK.WPF -Version 1.0.2
                    
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="Navbot.RealtimeApi.Dotnet.SDK.WPF" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Navbot.RealtimeApi.Dotnet.SDK.WPF" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Navbot.RealtimeApi.Dotnet.SDK.WPF" />
                    
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 Navbot.RealtimeApi.Dotnet.SDK.WPF --version 1.0.2
                    
#r "nuget: Navbot.RealtimeApi.Dotnet.SDK.WPF, 1.0.2"
                    
#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 Navbot.RealtimeApi.Dotnet.SDK.WPF@1.0.2
                    
#: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=Navbot.RealtimeApi.Dotnet.SDK.WPF&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Navbot.RealtimeApi.Dotnet.SDK.WPF&version=1.0.2
                    
Install as a Cake Tool

Getting Started

Step 1: Import the Core and WPF SDK

using Navbot.RealtimeApi.Dotnet.SDK.Core;
using Navbot.RealtimeApi.Dotnet.SDK.WPF;

Step 2: Use RealtimeApiWpfControl in XAML

<Window x:Class="YourNamespace.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:wpf="clr-namespace:Navbot.RealtimeApi.Dotnet.SDK.WPF"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <wpf:RealtimeApiWpfControl x:Name="realtimeApiWpfControl" />
    </Grid>
</Window>

Step 3: Get OPENAI_API_KEY

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    string openAiApiKey = Environment.GetEnvironmentVariable("OPENAI_API_KEY") ?? "";
    realtimeApiWpfControl.OpenAiApiKey = openAiApiKey;
}

Step 4: Start Processing Audio

realtimeApiWpfControl.StartSpeechRecognition();

Step 5: End Processing Audio

realtimeApiWpfControl.StopSpeechRecognition();

License

Licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows 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
1.0.27 500 3/24/2025
1.0.26 178 3/21/2025
1.0.25 193 2/7/2025
1.0.24 186 1/27/2025
1.0.23 151 1/27/2025
1.0.22 177 1/27/2025
1.0.21 186 1/27/2025
1.0.20 196 1/23/2025
1.0.19 169 1/23/2025
1.0.18 180 1/21/2025
1.0.17 171 1/21/2025
1.0.16 169 1/21/2025
1.0.15 167 1/20/2025
1.0.13 163 1/19/2025
1.0.12 171 1/18/2025
1.0.11 205 1/9/2025
1.0.9 167 1/5/2025
1.0.8 173 1/5/2025
1.0.3 169 12/24/2024
1.0.2 173 12/24/2024
Loading failed