Frontmatec.AI.AspNetCore 0.0.11

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

Frontmatec.AI.AspNetCore

ASP.NET Core minimal-API integration for Frontmatec.AI. Gives a web app a complete, auth-scoped chat backend — SSE token/tool streaming, full thread CRUD, per-user isolation — that the host wires up explicitly (no AddX() magic), then maps with a single app.MapFrontmatecAI().

Install

dotnet add package Frontmatec.AI.AspNetCore

Use

The host owns its composition root: register the core Frontmatec.AI services and the web-layer services (FrontmatecAIEndpointOptions, a per-user ILlmThreadStore, FrontmatecAIChatService, TurnRegistry), then map the endpoints:

builder.Services.AddOptions<FrontmatecAIEndpointOptions>()
    .BindConfiguration("AI:AspNetCore")
    .Configure(o => o.RoutePrefix = "/ai");
// … per-user ILlmThreadStore, FrontmatecAIChatService, TurnRegistry …

var app = builder.Build();
app.MapFrontmatecAI();   // POST /ai/threads, /ai/threads/{id}/ask (SSE), GET/PUT/DELETE …

Endpoints stream Server-Sent Events (assistant_delta, tool_started, tool_completed, …) and are all scoped to the authenticated user. The full wiring is in the repository's ChatWebHost sample and explained in docs/web-chat.md.

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
0.0.11 93 6/4/2026
0.0.10 88 6/3/2026
0.0.9 92 6/3/2026