Deepgram 4.0.1

dotnet add package Deepgram --version 4.0.1
NuGet\Install-Package Deepgram -Version 4.0.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="Deepgram" Version="4.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Deepgram --version 4.0.1
#r "nuget: Deepgram, 4.0.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.
// Install Deepgram as a Cake Addin
#addin nuget:?package=Deepgram&version=4.0.1

// Install Deepgram as a Cake Tool
#tool nuget:?package=Deepgram&version=4.0.1

Deepgram .NET SDK

NuGet Build Status Contributor Covenant Discord

Official .NET SDK for Deepgram. Power your apps with world-class speech and Language AI models.

Documentation

Complete documentation of the .NET SDK can be found on the Deepgram Docs.

You can learn more about the full Deepgram API at https://developers.deepgram.com.

Getting an API Key

🔑 To access the Deepgram API, you will need a free Deepgram API Key.

Requirements

This SDK supports the following versions:

  • .NET 8.0
  • .NET 7.0
  • .NET 6.0

Installation

To install the latest version of the C# SDK using NuGet (latest means this version will guarantee change over time), run the following command from your terminal in your project's directory:

dotnet add package Deepgram

Or use the NuGet package Manager. Right click on project and select manage NuGet packages.

Installing the Previous Version

We guarantee that major interfaces will not break in a given major semver (ie, 4.* release). However, all bets are off moving from a 3.* to 4.* major release. This follows standard semver best-practices.

To install the previous major version of the .NET SDK, run the following command from your terminal in your project's directory:

dotnet add package Deepgram --version 3.4.2

Quickstarts

This SDK aims to reduce complexity and abstract/hide some internal Deepgram details that clients shouldn't need to know about. However, you can still tweak options and settings if you need.

PreRecorded Audio Transcription Quickstart

You can find a walkthrough on our documentation site. Transcribing Pre-Recorded Audio can be done using the following sample code:

// JSON options
JsonSerializerOptions options = new(JsonSerializerDefaults.Web)
{
  WriteIndented = true
};

// Set "DEEPGRAM_API_KEY" environment variable to your Deepgram API Key
var deepgramClient = new PreRecordedClient();

var response = await deepgramClient.TranscribeUrl(
  new UrlSource("https://static.deepgram.com/examples/Bueller-Life-moves-pretty-fast.wav"),
  new PreRecordedSchema()
  {
    Model = "nova-2",
  });

Console.WriteLine(response);

Live Audio Transcription Quickstart

You can find a walkthrough on our documentation site. Transcribing Live Audio can be done using the following sample code:

// Set "DEEPGRAM_API_KEY" environment variable to your Deepgram API Key
var liveClient = new LiveClient();

// Subscribe to the EventResponseReceived event
liveClient.Subscribe(new EventHandler<OpenResponse>((sender, e) =>
{
    Console.WriteLine($"\n\n----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<MetadataResponse>((sender, e) =>
{
    Console.WriteLine($"----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<ResultResponse>((sender, e) =>
{
    Console.WriteLine($"----> Speaker: {e.Channel.Alternatives[0].Transcript}");
}));
liveClient.Subscribe(new EventHandler<SpeechStartedResponse>((sender, e) =>
{
    Console.WriteLine($"----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<UtteranceEndResponse>((sender, e) =>
{
    Console.WriteLine($"----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<CloseResponse>((sender, e) =>
{
    Console.WriteLine($"----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<UnhandledResponse>((sender, e) =>
{
    Console.WriteLine($"----> {e.Type} received");
}));
liveClient.Subscribe(new EventHandler<ErrorResponse>((sender, e) =>
{
    Console.WriteLine($"----> { e.Type} received. Error: {e.Message}");
}));

// Start the connection
var liveSchema = new LiveSchema()
{
    Model = "nova-2",
    Encoding = "linear16",
    SampleRate = 16000,
    Punctuate = true,
    SmartFormat = true,
    InterimResults = true,
    UtteranceEnd = "1000",
    VadEvents = true,
};
await liveClient.Connect(liveSchema);

// Microphone streaming
var microphone = new Microphone(liveClient.Send);
microphone.Start();

// Wait for the user to press a key
Console.ReadKey();

// Stop the microphone
microphone.Stop();

// Stop the connection
await liveClient.Stop();

Example Code

There are examples for every API call in this SDK. You can find all of these examples in the examples folder at the root of this repo.

These examples provide:

To run each example, set the DEEPGRAM_API_KEY as an environment variable, then cd into each example folder and execute the example: dotnet run <Project File>.csproj.

Logging

This SDK uses Serilog to perform all of its logging tasks. By default, this SDK will enable Information level messages and higher (ie Warning, Error, etc.) when you initialize the library as follows:

// Default logging level is "Information"
Library.Initialize();

To increase the logging output/verbosity for debug or troubleshooting purposes, you can set the Debug level but using this code:

Library.Initialize(LogLevel.Debug);

Backwards Compatibility

Older SDK versions will receive Priority 1 (P1) bug support only. Security issues, both in our code and dependencies, are promptly addressed. Significant bugs without clear workarounds are also given priority attention.

Development and Contributing

Interested in contributing? We ❤️ pull requests!

To make sure our community is safe for all, be sure to review and agree to our Code of Conduct. Then see the Contribution guidelines for more information.

Getting Help

We love to hear from you, so if you have questions, comments or find a bug in the project, please let us know! You can either:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Deepgram:

Package Downloads
Fsel.Core

Fsel Core Package

fAI

Fred's experimentation with AI

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Deepgram:

Repository Stars
VRCWizard/TTS-Voice-Wizard
Speech to Text to Speech. Song now playing. Sends text as OSC messages to VRChat to display on avatar. (STTTS) (Speech to TTS) (VRC STT System) (VTuber TTS)
Version Downloads Last updated
4.0.1 23 4/24/2024
4.0.0 88 4/22/2024
3.4.2 1,156 3/29/2024
3.4.1 4,393 2/13/2024
3.4.0 19,913 9/26/2023
3.3.0 1,275 9/14/2023
3.2.0 651 8/28/2023
3.1.0 1,993 8/14/2023
2.2.0 7,599 7/20/2023
2.1.0 2,951 6/30/2023
2.0.0 6,836 4/12/2023
1.13.0 1,316 1/17/2023
1.12.0 766 12/13/2022
1.11.1 560 11/30/2022
1.10.0 2,243 11/15/2022
1.9.0 833 10/30/2022
1.8.0 697 10/6/2022
1.7.1 680 10/1/2022
1.7.0 656 9/27/2022
1.6.0 674 9/20/2022
1.5.1 694 9/2/2022
1.4.1 713 8/17/2022
1.4.0 736 7/14/2022
1.3.1 688 7/1/2022
1.2.0 791 4/20/2022
1.1.0 1,014 2/4/2022
1.0.0 550 12/20/2021
1.0.0-beta2 573 11/22/2021
1.0.0-beta1 650 11/21/2021