Skip to content

Microsoft.Extensions.AI Integration

Cross-SDK comparison

See the centralized MEAI documentation for feature matrices and comparisons across all tryAGI SDKs.

The Fireworks audio SDK does not currently expose a direct Microsoft.Extensions.AI adapter. Fireworks chat models are available through the OpenAI-compatible provider helpers in tryAGI.OpenAI.

Installation

1
dotnet add package tryAGI.Fireworks

Usage

1
2
3
4
5
using Microsoft.Extensions.AI;
using Fireworks;

using var client = new FireworksClient(
    apiKey: Environment.GetEnvironmentVariable("FIREWORKS_API_KEY")!);

Next Steps