BbQ.ChatWidgets 1.0.3

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

BbQ.ChatWidgets

NuGet Version npm Version

A compact library of UI chat widgets and helpers for server and client integrations.

This repository ships three distributable packages:

  • NuGet: BbQ.ChatWidgets (the .NET library: services, renderers, endpoints)
  • npm: @bbq-chat/widgets (the JavaScript/TypeScript client library: widgets, client helpers)
  • npm: @bbq-chat/widgets-angular (Angular-native components and services)

Note: the .NET package no longer bundles the JavaScript client or theme CSS. Install the npm package (or bring your own UI) to render widgets in a browser.

๐Ÿš€ 30-Second Demos

Get a working button widget in under 30 seconds!

C# / .NET (Server)

using Microsoft.Extensions.AI;
using BbQ.ChatWidgets.Extensions;

var builder = WebApplication.CreateBuilder(args);

// 1. Create chat client with function invocation
var apiKey = builder.Configuration["OpenAI:ApiKey"] 
    ?? throw new InvalidOperationException("OpenAI:ApiKey not configured");
    
IChatClient chatClient = new ChatClientBuilder(
    new OpenAI.Chat.ChatClient("gpt-4o-mini", apiKey).AsIChatClient())
    .UseFunctionInvocation()
    .Build();

// 2. Register BbQ services
builder.Services.AddBbQChatWidgets(options =>
{
  options.ChatClientFactory = _ => chatClient;
  options.EnablePersona = true; // opt-in: enable request/thread/default persona behavior
  options.DefaultPersona = "You are a concise assistant."; // optional
});

var app = builder.Build();

// 3. Map endpoints
app.MapBbQChatEndpoints();
app.Run();

JavaScript / TypeScript (Client)

import { WidgetManager } from '@bbq-chat/widgets';

// 1. Send a message
const response = await fetch('/api/chat/message', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ message: 'Show me a button', threadId: 'demo-123' })
});

const turn = await response.json();

// 2. Render widgets
const manager = new WidgetManager();
const container = document.getElementById('chat-container');
if (container && turn.widgets?.length) {
    manager.renderInto(container, turn.widgets);
}

Angular (Client)

import { Component, signal } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { WidgetRendererComponent } from '@bbq-chat/widgets-angular';
import type { ChatWidget } from '@bbq-chat/widgets-angular';

@Component({
  selector: 'app-chat',
  standalone: true,
  imports: [WidgetRendererComponent],
  template: `
    <bbq-widget-renderer
      [widgets]="widgets()"
      (widgetAction)="handleWidgetAction($event)">
    </bbq-widget-renderer>
  `
})
export class ChatComponent {
  widgets = signal<ChatWidget[]>([]);

  constructor(private http: HttpClient) {}

  sendMessage(text: string) {
    this.http.post<{ widgets?: ChatWidget[] }>('/api/chat/message', { message: text, threadId: 'demo-123' })
      .subscribe(turn => this.widgets.set(turn.widgets ?? []));
  }

  handleWidgetAction(event: { actionName: string; payload: any }) {
    console.log('Action:', event.actionName, event.payload);
  }
}

๐Ÿ“š Full Getting Started Guide โ†’ | Widget Gallery โ†’ | Integration Paths โ†’

Features

  • Interactive Chat Widgets: Buttons, forms, cards, dropdowns, sliders, toggles, file uploads, and more
  • Server-Driven UI: The LLM decides which widgets to show based on conversation context
  • Automatic Chat History Summarization: Efficiently manages long conversations by summarizing older turns
  • SSE Support: Real-time server-pushed widget updates
  • Triage Agents: Route conversations to specialized agents based on classification
  • Type-Safe Widget Actions: Strongly-typed handlers for widget interactions
  • Extensible Architecture: Swap out components via dependency injection

Install

NuGet (.NET)

dotnet add [YOUR_PROJECT] package BbQ.ChatWidgets

npm (JS/TS client + themes)

npm install @bbq-chat/widgets

npm (Angular native components)

npm install @bbq-chat/widgets-angular @bbq-chat/widgets

Blazor Widget Overrides

Use component overrides to replace built-in widget components without writing switch/if logic.

Local (per renderer instance)

<WidgetRenderer Widget="widget" OnAction="HandleWidgetAction">
  <Overrides>
    <WidgetOverride Type="typeof(InputWidget)" Template="typeof(MyCustomInputComponent)" />
    <WidgetOverride TypeId="clock" Template="typeof(MyClockWidgetComponent)" />
  </Overrides>
</WidgetRenderer>

Global (DI registration)

services.AddBbQChatWidgetsBlazor(overrides =>
{
  overrides.Add<InputWidget, MyCustomInputComponent>();
  overrides.Add(typeof(MyClockWidgetComponent), widgetTypeId: "clock");
});

Resolution order is: local exact type โ†’ local type id โ†’ local assignable type โ†’ global exact type โ†’ global type id โ†’ global assignable type โ†’ built-in fallback.

๐Ÿ“– Documentation

Build Documentation Locally

./docs/generate-docs.ps1

๐Ÿงช Tests

  • .NET: dotnet test
  • JS/TS: npm test (run from Sample/WebApp/ClientApp)

๐Ÿ“‹ Changelog

See CHANGELOG.md for version history and release notes.

๐Ÿ“„ License

See LICENSE.

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 was computed.  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
1.0.3 90 2/25/2026
1.0.2 84 2/23/2026
1.0.2-beta 85 2/20/2026
1.0.1 87 2/20/2026
1.0.0 107 1/8/2026