Skip to content

tryAGI/Fireworks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fireworks

Modern .NET SDK for Fireworks AI audio transcription and translation generated with AutoSDK.

Nuget package dotnet License: MIT Discord

Generated from the source spec

Built from a checked-in OpenAPI document assembled from the public Fireworks audio API reference.

Auto-updated

Designed for fast regeneration and low-friction updates when the upstream API changes without breaking compatibility.

Modern .NET

Targets current .NET practices including nullability, trimming, NativeAOT awareness, and source-generated serialization.

Docs from examples

Examples stay in sync between the README, MkDocs site, and integration tests through the AutoSDK docs pipeline.

Usage

using Fireworks;

using var client = new FireworksClient(apiKey);

CLI

dotnet tool install --global Fireworks.CLI --prerelease
fireworks api --help

Transcribe

Create a client for Fireworks pre-recorded audio transcription.

using var client = new FireworksClient(apiKey);

var audioPath = Environment.GetEnvironmentVariable("FIREWORKS_SAMPLE_AUDIO_PATH") is { Length: > 0 } path
    ? path
    : "sample.wav";

var audioBytes = await File.ReadAllBytesAsync(audioPath);
var response = await client.CreateTranscriptionAsync(
    file: audioBytes,
    filename: Path.GetFileName(audioPath),
    model: AudioModel.WhisperV3);

Support

Bugs

Open an issue in tryAGI/Fireworks.

Ideas and questions

Use GitHub Discussions for design questions and usage help.

Community

Join the tryAGI Discord for broader discussion across SDKs.

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.

About

C# SDK for the Fireworks AI audio transcription and translation APIs

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors