Cisharpai.OpenAi 0.2.2

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Cisharpai.OpenAi --version 0.2.2
                    
NuGet\Install-Package Cisharpai.OpenAi -Version 0.2.2
                    
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="Cisharpai.OpenAi" Version="0.2.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cisharpai.OpenAi" Version="0.2.2" />
                    
Directory.Packages.props
<PackageReference Include="Cisharpai.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 Cisharpai.OpenAi --version 0.2.2
                    
#r "nuget: Cisharpai.OpenAi, 0.2.2"
                    
#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 Cisharpai.OpenAi@0.2.2
                    
#: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=Cisharpai.OpenAi&version=0.2.2
                    
Install as a Cake Addin
#tool nuget:?package=Cisharpai.OpenAi&version=0.2.2
                    
Install as a Cake Tool

Cisharpai.OpenAi

OpenAI provider for the Cisharpai unified LLM client library.

Features

  • Chat completions (GPT-4, GPT-4.1, GPT-4.5)
  • Reasoning models (o1, o3, o4-mini) with configurable reasoning effort
  • Responses API (GPT-5) with status/incomplete handling
  • Text embeddings (text-embedding-3-small, text-embedding-3-large, ada-002)
  • JSON Mode and Structured Outputs (with refusal handling)
  • Tool calling / function calling (all ToolChoice variants)
  • Vision (image file paths and base64)
  • Streaming (token-by-token via SSE)
  • Built-in HTTP resilience (retries, timeouts)

Quick Start

using Cisharpai;
using Cisharpai.Models;
using Cisharpai.OpenAi;
using Microsoft.Extensions.DependencyInjection;

var services = new ServiceCollection();
services.AddOpenAiClient(options =>
{
    options.ApiKey = "YOUR_API_KEY";
    options.DefaultModel = OpenAiModels.Chat.Gpt4_1Nano;
});

var provider = services.BuildServiceProvider();
var client = provider.GetRequiredService<IChatCompletionClient>();

var request = new ChatCompletionRequest(
    Messages: [new LlmMessage(LlmRole.User, "Say hello in one sentence.")],
    Temperature: 0.2,
    MaxTokens: 100);

var response = await client.GetChatCompletionAsync(request);
Console.WriteLine(response.Content);

Embeddings

services.AddOpenAiEmbeddingClient(options =>
{
    options.ApiKey = "YOUR_API_KEY";
    options.DefaultModel = OpenAiModels.Embedding.TextEmbedding3Small;
});

var embeddingClient = provider.GetRequiredService<IEmbeddingClient>();
var result = await embeddingClient.GetEmbeddingAsync(
    new EmbeddingRequest(Input: ["Hello world"]));

Available Models

Chat: Gpt4_1, Gpt4_1Mini, Gpt4_1Nano, Gpt4o, Gpt4oMini, Gpt4_5, O3, O3Mini, O3Pro, O4Mini, O1, O1Mini

Embedding: TextEmbedding3Small, TextEmbedding3Large, TextEmbeddingAda002

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  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
0.3.0-alpha.12.202 37 5/19/2026
0.3.0-alpha.11.197 39 5/15/2026
0.3.0-alpha.10.196 41 5/15/2026
0.3.0-alpha.9.186 53 5/8/2026
0.3.0-alpha.8.185 50 5/8/2026
0.3.0-alpha.7.164 42 5/6/2026
0.3.0-alpha.6.161 44 5/6/2026
0.3.0-alpha.5.159 46 5/6/2026
0.3.0-alpha.5.155 43 5/6/2026
0.3.0-alpha.4.156 46 5/6/2026
0.3.0-alpha.4.154 39 5/6/2026
0.3.0-alpha.3.150 44 4/30/2026
0.3.0-alpha.2.145 40 4/30/2026
0.2.2 89 4/30/2026
0.2.2-beta.1.147 48 4/30/2026
0.2.2-beta.1.146 43 4/30/2026
0.2.1 97 4/30/2026
0.2.1-beta.1.142 46 4/30/2026
0.2.1-beta.1.140 47 4/30/2026
0.2.1-beta.1.138 41 4/30/2026
Loading failed