Soenneker.SemanticKernel.Pool.OpenAi 4.0.579

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.SemanticKernel.Pool.OpenAi --version 4.0.579
                    
NuGet\Install-Package Soenneker.SemanticKernel.Pool.OpenAi -Version 4.0.579
                    
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="Soenneker.SemanticKernel.Pool.OpenAi" Version="4.0.579" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.SemanticKernel.Pool.OpenAi" Version="4.0.579" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.SemanticKernel.Pool.OpenAi" />
                    
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 Soenneker.SemanticKernel.Pool.OpenAi --version 4.0.579
                    
#r "nuget: Soenneker.SemanticKernel.Pool.OpenAi, 4.0.579"
                    
#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.
#:package Soenneker.SemanticKernel.Pool.OpenAi@4.0.579
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.SemanticKernel.Pool.OpenAi&version=4.0.579
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.SemanticKernel.Pool.OpenAi&version=4.0.579
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.SemanticKernel.Pool.OpenAi

OpenAI connector registration helpers for Soenneker.SemanticKernel.Pool.

Installation

dotnet add package Soenneker.SemanticKernel.Pool.OpenAi

Add an OpenAI entry

Resolve the pool and HTTP client cache from dependency injection, then register an entry:

using Soenneker.SemanticKernel.Enums.KernelType;
using Soenneker.SemanticKernel.Pool.OpenAi;

await pool.AddOpenAi(
    poolId: "chat",
    key: "openai-primary",
    type: KernelType.Chat,
    modelId: "chat-model-id",
    apiKey: configuration["OpenAI:ApiKey"]!,
    endpoint: "https://api.openai.com/v1",
    httpClientCache: httpClientCache,
    rps: 2,
    rpm: 60,
    rpd: 1_000,
    tokensPerDay: null,
    cancellationToken);

Supported types are:

  • KernelType.Chat for chat completion
  • KernelType.Embedding for embedding generation
  • KernelType.Audio for text-to-audio
  • KernelType.Image for text-to-image

Other types throw NotSupportedException when the pool first constructs the kernel.

Chat and embedding create an OpenAIClient using the supplied endpoint. Audio and image use Semantic Kernel connector overloads that receive the API key and cached HttpClient, but this adapter does not apply the supplied endpoint to those paths. Use this package's audio/image registrations only when the connector's default endpoint is appropriate.

The HTTP client is cached under openai:{poolId}:{key} with a five-minute timeout. Pool quota values are reservations made when GetAvailable selects the entry. tokensPerDay counts one unit per acquisition; it is not populated from provider token usage.

Remove the entry

Use the matching helper so both the pool entry and cached HTTP client are removed:

await pool.RemoveOpenAi(
    "chat",
    "openai-primary",
    httpClientCache,
    cancellationToken);

Keep the API key in a protected configuration provider and avoid logging or serializing the generated SemanticKernelOptions.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
4.0.596 45 9/13/2026
4.0.595 35 9/13/2026
4.0.594 48 9/13/2026
4.0.593 41 9/13/2026
4.0.592 44 9/13/2026
4.0.591 73 9/13/2026
4.0.590 47 9/12/2026
4.0.588 37 9/12/2026
4.0.587 82 9/9/2026
4.0.586 78 9/9/2026
4.0.585 76 9/9/2026
4.0.584 84 9/8/2026
4.0.583 84 9/8/2026
4.0.582 92 9/8/2026
4.0.581 91 9/7/2026
4.0.580 102 9/7/2026
4.0.579 89 9/7/2026
4.0.578 89 9/5/2026
4.0.577 95 9/5/2026
4.0.576 97 9/5/2026
Loading failed

Updated Multiple NuGet packages