NovaCore.AgentKit.Providers.OpenAI 3.1.9

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

NovaCore.AgentKit

Production-ready AI agents for .NET - Build ChatAgents for conversations or ReActAgents for autonomous tasks. Clean API, full-featured, 7 LLM providers. Built-in real-time cost tracking.

.NET 10.0 License: MIT


Quick Start

dotnet add package NovaCore.AgentKit.Core
dotnet add package NovaCore.AgentKit.Providers.Anthropic
await using var agent = await new AgentBuilder()
    .UseAnthropic(apiKey, AnthropicModels.ClaudeSonnet45)
    .WithSystemPrompt("You are a helpful assistant.")
    .BuildChatAgentAsync();

var response = await agent.SendAsync("What is 2+2?");
Console.WriteLine(response.Text);  // "4"

Documentation Index

Getting Started

Document Description
Getting Started Installation, quick start, first agent
Configuration AgentBuilder API, options, config classes

Agents

Document Description
Agents ChatAgent and ReActAgent APIs
Tools Tool types, multimodal tools, UI tools
History Management Persistence, summarization, tool result filtering
Working Memory remember/recall tools for context preservation

LLM Providers

Document Description
LLM Providers Anthropic, OpenAI, Google, xAI, Groq, Fireworks, OpenRouter

Integrations

Document Description
MCP Integration Model Context Protocol, tool filtering, CDP browser lifecycle
Browser Automation BrowserUse library for web automation
Google Computer Use Gemini Computer Use model integration

Monitoring & Reference

Document Description
Observability Observer pattern, cost tracking, OpenTelemetry
API Reference All types and interfaces

Agent Types

ChatAgent ReActAgent
Stateful conversations Ephemeral tasks
Persistent across sessions Autonomous execution
Human-in-the-loop (UI tools) Tool-driven reasoning
Chat apps, support bots Research, automation

Packages

Core

Package Description
NovaCore.AgentKit.Core Core abstractions (required)
NovaCore.AgentKit.MCP Model Context Protocol
NovaCore.AgentKit.EntityFramework Persistence

Providers

Package Description
NovaCore.AgentKit.Providers.Anthropic Claude
NovaCore.AgentKit.Providers.OpenAI GPT-4o, o1
NovaCore.AgentKit.Providers.Google Gemini
NovaCore.AgentKit.Providers.XAI Grok
NovaCore.AgentKit.Providers.Groq Qwen, Llama
NovaCore.AgentKit.Providers.Fireworks GLM, DeepSeek, Qwen, Kimi
NovaCore.AgentKit.Providers.OpenRouter Any model

Extensions

Package Description
NovaCore.AgentKit.Extensions.OpenTelemetry OpenTelemetry metrics (tokens + cost)

License

MIT License - see LICENSE file


Built by NovaCore AI Team

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
3.2.1 0 3/3/2026
3.2.0 0 3/2/2026
3.1.9 0 3/2/2026
3.1.8 73 2/25/2026
3.1.6 59 2/21/2026
3.1.5 93 2/5/2026
3.1.4 71 1/22/2026
3.1.3 110 1/16/2026
3.1.2 57 1/16/2026
3.1.1 56 1/16/2026
3.1.0 79 1/15/2026
3.0.5 63 1/10/2026
3.0.4 60 1/7/2026
3.0.3 59 1/7/2026
3.0.2 87 12/27/2025
3.0.1 248 12/18/2025
3.0.0 330 11/30/2025
2.1.0 318 11/30/2025
2.0.0 233 11/30/2025
1.9.0 227 11/30/2025
Loading failed