tryAGI.AssemblyAI
0.0.0-dev.168
Prefix Reserved
See the version list below for details.
dotnet add package tryAGI.AssemblyAI --version 0.0.0-dev.168
NuGet\Install-Package tryAGI.AssemblyAI -Version 0.0.0-dev.168
<PackageReference Include="tryAGI.AssemblyAI" Version="0.0.0-dev.168" />
<PackageVersion Include="tryAGI.AssemblyAI" Version="0.0.0-dev.168" />
<PackageReference Include="tryAGI.AssemblyAI" />
paket add tryAGI.AssemblyAI --version 0.0.0-dev.168
#r "nuget: tryAGI.AssemblyAI, 0.0.0-dev.168"
#:package tryAGI.AssemblyAI@0.0.0-dev.168
#addin nuget:?package=tryAGI.AssemblyAI&version=0.0.0-dev.168&prerelease
#tool nuget:?package=tryAGI.AssemblyAI&version=0.0.0-dev.168&prerelease
AssemblyAI
AssemblyAI has an official .NET SDK available, and we use this SDK primarily to improve the overall experience of our SDK/try to reach/exceed the level of the official one and extend it to all our generated SDKs for other platforms.
Features 🔥
- Fully generated C# SDK based on official AssemblyAI OpenAPI specification using OpenApiGenerator
- Same day update to support new features
- Updated and supported automatically if there are no breaking changes
- All modern .NET features - nullability, trimming, NativeAOT, etc.
- Support .Net Framework/.Net Standard 2.0
- Microsoft.Extensions.AI
ISpeechToTextClientsupport
Usage
using AssemblyAI;
using var api = new AssemblyAIClient(apiKey);
var fileUrl = "https://github.com/AssemblyAI-Community/audio-examples/raw/main/20230607_me_canadian_wildfires.mp3";
//// You can also transcribe a local file by passing in a file path
// var filePath = "./path/to/file.mp3";
// var uploadedFile = await client.Transcript.UploadFileAsync();
// fileUrl = uploadedFile.UploadUrl;
Transcript transcript = await client.Transcript.CreateTranscriptAsync(TranscriptParams.FromUrl(
fileUrl,
new TranscriptOptionalParams
{
LanguageDetection = true,
SpeakerLabels = true, // Identify speakers in your audios
AutoHighlights = true, // Identifying highlights in your audio
}));
transcript.EnsureStatusCompleted();
Console.WriteLine(transcript);
Microsoft.Extensions.AI
The SDK implements ISpeechToTextClient:
using AssemblyAI;
using Microsoft.Extensions.AI;
ISpeechToTextClient speechClient = new AssemblyAIClient(apiKey);
await using var audioStream = File.OpenRead("recording.wav");
var response = await speechClient.GetTextAsync(audioStream);
Console.WriteLine(response.Text);
Support
Priority place for bugs: https://github.com/tryAGI/AssemblyAI/issues
Priority place for ideas and general questions: https://github.com/tryAGI/AssemblyAI/discussions
Discord: https://discord.gg/Ca2xhfBf3v
Acknowledgments
This project is supported by JetBrains through the Open Source Support Program.
This project is supported by CodeRabbit through the Open Source Support Program.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Extensions.AI.Abstractions (>= 10.4.0)
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 |
|---|---|---|
| 0.0.0-dev.191 | 0 | 3/20/2026 |
| 0.0.0-dev.189 | 23 | 3/20/2026 |
| 0.0.0-dev.188 | 19 | 3/20/2026 |
| 0.0.0-dev.187 | 19 | 3/20/2026 |
| 0.0.0-dev.186 | 24 | 3/20/2026 |
| 0.0.0-dev.185 | 23 | 3/19/2026 |
| 0.0.0-dev.184 | 25 | 3/19/2026 |
| 0.0.0-dev.182 | 29 | 3/19/2026 |
| 0.0.0-dev.181 | 25 | 3/19/2026 |
| 0.0.0-dev.180 | 27 | 3/19/2026 |
| 0.0.0-dev.179 | 29 | 3/19/2026 |
| 0.0.0-dev.178 | 32 | 3/19/2026 |
| 0.0.0-dev.176 | 25 | 3/19/2026 |
| 0.0.0-dev.174 | 23 | 3/19/2026 |
| 0.0.0-dev.173 | 31 | 3/19/2026 |
| 0.0.0-dev.172 | 28 | 3/19/2026 |
| 0.0.0-dev.171 | 32 | 3/19/2026 |
| 0.0.0-dev.170 | 27 | 3/19/2026 |
| 0.0.0-dev.169 | 25 | 3/19/2026 |
| 0.0.0-dev.168 | 25 | 3/19/2026 |