Universal.GenerativeAI.AmazonBedrock 1.0.0

dotnet add package Universal.GenerativeAI.AmazonBedrock --version 1.0.0
                    
NuGet\Install-Package Universal.GenerativeAI.AmazonBedrock -Version 1.0.0
                    
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="Universal.GenerativeAI.AmazonBedrock" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Universal.GenerativeAI.AmazonBedrock" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Universal.GenerativeAI.AmazonBedrock" />
                    
Project file
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 Universal.GenerativeAI.AmazonBedrock --version 1.0.0
                    
#r "nuget: Universal.GenerativeAI.AmazonBedrock, 1.0.0"
                    
#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.
#addin nuget:?package=Universal.GenerativeAI.AmazonBedrock&version=1.0.0
                    
Install Universal.GenerativeAI.AmazonBedrock as a Cake Addin
#tool nuget:?package=Universal.GenerativeAI.AmazonBedrock&version=1.0.0
                    
Install Universal.GenerativeAI.AmazonBedrock as a Cake Tool

Universal.GenerativeAI.AmazonBedrock

Implementation of generative AI interfaces using Amazon Bedrock models for text generation and transformation.

Classes

AmazonBedrockTextGenerator

Implements the IAsyncTextGenerator interface to generate text using Amazon Bedrock's AI models.

// Basic usage with default options
var bedrockClient = new AmazonBedrockRuntimeClient();
var generator = new AmazonBedrockTextGenerator(bedrockClient);
string generatedText = generator.Generate("Write a summary of the key features of quantum computing:");

// Asynchronous usage with custom options
var options = new AmazonBedrockTextGenerator.Options
{
    ModelId = "<model ID or inference profile ARN>",
    MaxTokens = 4096
};
var generator = new AmazonBedrockTextGenerator(bedrockClient, options);
string generatedText = await generator.GenerateAsync("Write a summary of the key features of quantum computing:", cancellationToken);

AmazonBedrockTextTransformer

Implements the IAsyncTextTransformer interface to transform text into structured objects using Amazon Bedrock's AI models.

// Basic usage to transform text into a custom type
var bedrockClient = new AmazonBedrockRuntimeClient();
var transformer = new AmazonBedrockTextTransformer(bedrockClient);

// Define a class to hold the structured data
public class Product
{
    public string Name { get; set; }
    public string Description { get; set; }
    public decimal Price { get; set; }
}

// Transform text into a Product instance, with explicit prompt for JSON output
Product product = transformer.Transform<Product>(
    "Extract product details from this text and respond ONLY with valid JSON in the following format:\n" +
    "{\n" +
    "  \"Name\": \"product name\",\n" +
    "  \"Description\": \"product description\",\n" +
    "  \"Price\": numeric price\n" +
    "}\n\n" +
    "Text: Gaming laptop XPS-9000, high-performance gaming with RGB keyboard, priced at $1299.99"
);

// Asynchronous usage with custom options
var options = new AmazonBedrockTextTransformer.Options
{
    ModelId = "anthropic.claude-3-5-sonnet-20240620-v1:0",
    MaxTokens = 2048
};
var transformer = new AmazonBedrockTextTransformer(bedrockClient, options);
List<Product> products = await transformer.TransformAsync<List<Product>>(
    "Extract all products from this text and respond ONLY with valid JSON as an array of objects in the following format:\n" +
    "[\n" +
    "  {\n" +
    "    \"Name\": \"product name\",\n" +
    "    \"Description\": \"product description\",\n" +
    "    \"Price\": numeric price\n" +
    "  },\n" +
    "  ...\n" +
    "]\n\n" +
    "Text: Our latest models include the XPS-9000 gaming laptop ($1299.99) with RGB keyboard, and the UltraSlim X1 ultrabook ($899.50) featuring a 4K touchscreen.",
    cancellationToken
);

Features

  • Token Streaming: Automatically handles responses that exceed token limits by streaming content in batches
  • Model Selection: Configure different Amazon Bedrock models based on your needs
  • Intelligent Type Detection: Automatically determines the appropriate JSON structure based on the target type
  • Configurable Token Limits: Adjust batch token limits to optimize for performance or cost
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0 91 2/27/2025

Initial release.