Murf 0.0.0-dev
This is a prerelease version of Murf.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Murf --version 0.0.0-dev
NuGet\Install-Package Murf -Version 0.0.0-dev
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="Murf" Version="0.0.0-dev" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Murf" Version="0.0.0-dev" />
<PackageReference Include="Murf" />
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 Murf --version 0.0.0-dev
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Murf, 0.0.0-dev"
#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 Murf@0.0.0-dev
#: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=Murf&version=0.0.0-dev&prerelease
#tool nuget:?package=Murf&version=0.0.0-dev&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Murf
C# SDK for the Murf AI API -- enterprise-grade text-to-speech with 150+ voices across 35 languages, voice changer, translation, and dubbing.
Features
- Fully generated C# SDK based on Murf AI OpenAPI specification using AutoSDK
- 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.
- MEAI AIFunction tools for use with any IChatClient
Usage
using Murf;
using var client = new MurfClient(apiKey);
// Generate speech from text
var response = await client.SubpackageTextToSpeech.GenerateAsync(
text: "Hello, welcome to Murf AI!",
voiceId: "en-US-natalie");
Console.WriteLine($"Audio URL: {response.AudioFile}");
Console.WriteLine($"Duration: {response.AudioLengthInSeconds}s");
// List available voices
var voices = await client.SubpackageTextToSpeech.GetVoicesAsync();
foreach (var voice in voices)
{
Console.WriteLine($"{voice.DisplayName} ({voice.VoiceId}) - {voice.Gender}");
}
// Translate text
var translation = await client.SubpackageText.TranslateAsync(
targetLanguage: "es-ES",
texts: ["Hello, how are you?"]);
MEAI Tools
using Murf;
using Microsoft.Extensions.AI;
using var murfClient = new MurfClient(apiKey);
// Use Murf TTS as a tool with any IChatClient
IChatClient chatClient = /* your preferred chat client */;
var response = await chatClient.GetResponseAsync(
"Generate speech saying 'Welcome to the future of AI'",
new ChatOptions
{
Tools = [murfClient.AsTextToSpeechTool()],
});
Support
Priority place for bugs: https://github.com/tryAGI/Murf/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Murf/discussions
Discord: https://discord.gg/Ca2xhfBf3v
Acknowledgments
This project is supported by JetBrains 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.Extensions.AI (>= 10.4.1)
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.9 | 32 | 4/1/2026 |
| 0.0.0-dev.8 | 49 | 3/29/2026 |
| 0.0.0-dev.7 | 38 | 3/29/2026 |
| 0.0.0-dev.3 | 101 | 3/28/2026 |
| 0.0.0-dev | 124 | 3/28/2026 |