https://github.com/tryagi/ultravox
C# SDK based on official Ultravox OpenAPI specification
https://github.com/tryagi/ultravox
ai api csharp dotnet langchain langchain-dotnet net8 net9 netstandard realtime sdk voice
Last synced: about 2 months ago
JSON representation
C# SDK based on official Ultravox OpenAPI specification
- Host: GitHub
- URL: https://github.com/tryagi/ultravox
- Owner: tryAGI
- License: mit
- Created: 2024-11-15T05:03:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-11T21:09:41.000Z (over 1 year ago)
- Last Synced: 2025-03-11T22:22:06.772Z (over 1 year ago)
- Topics: ai, api, csharp, dotnet, langchain, langchain-dotnet, net8, net9, netstandard, realtime, sdk, voice
- Language: C#
- Homepage: https://tryagi.github.io/Ultravox/
- Size: 486 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ultravox
[](https://www.nuget.org/packages/Ultravox/)
[](https://github.com/tryAGI/Ultravox/actions/workflows/dotnet.yml)
[](https://github.com/tryAGI/Ultravox/blob/main/LICENSE.txt)
[](https://discord.gg/Ca2xhfBf3v)
## Features 🔥
- Fully generated C# SDK based on [official Ultravox OpenAPI specification](https://api.ultravox.ai/api/schema/) using [AutoSDK](https://github.com/HavenDV/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.
- Support .Net Framework/.Net Standard 2.0
### Usage
```csharp
using Ultravox;
using var client = new UltravoxClient(apiKey);
PaginatedVoiceList list = await client.Voices.VoicesListAsync();
foreach (Voice voice in list.Results)
{
Console.WriteLine($"{voice.Name} - {voice.Description}");
}
```
## Support
Priority place for bugs: https://github.com/tryAGI/Ultravox/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Ultravox/discussions
Discord: https://discord.gg/Ca2xhfBf3v
## Acknowledgments

This project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).