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 Reverie SDK provides integration with Microsoft.Extensions.AI, enabling seamless interoperability with the unified .NET AI abstractions.

Installation

1
dotnet add package Reverie

Usage

1
2
3
4
5
6
7
8
9
using Microsoft.Extensions.AI;
using Reverie;

using var client = new ReverieClient(
    apiKey: Environment.GetEnvironmentVariable("REVERIE_API_KEY")!,
    appId: Environment.GetEnvironmentVariable("REVERIE_APP_ID")!);

// Use with Microsoft.Extensions.AI abstractions
// See examples below for specific integration patterns

Next Steps