SK_Ext 1.0.2

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

SK.Ext

SK.Ext is a .NET library that extends the functionality of the Microsoft Semantic Kernel. It provides additional utilities and extensions to enhance the development experience when working with Semantic Kernel.

Features

  • Chat Completion Extensions: Stream chat messages with functions.
  • Chat History Extensions: Manage and manipulate chat history efficiently.

Installation

To install SK.Ext, add the following package reference to your project file:

<PackageReference Include="SK.Ext" Version="1.0.0" />

Alternatively, you can install it via the .NET CLI:

dotnet add package SK.Ext --version 1.0.0

Usage

Chat Completion Extensions

The ChatCompletionServiceExtentions class provides methods to stream chat messages with functions. Here is an example:

using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.ChatCompletion;
using SK.Ext;

var kernel = Kernel.CreateBuilder().Build();
var chatCompletionService = kernel.GetRequiredService<IChatCompletionService>();
var chatHistory = new ChatHistory();
var settings = new PromptExecutionSettings();

await foreach (var result in chatCompletionService.StreamChatMessagesWithFunctions(kernel, chatHistory, settings))
{
    // Handle the result
}

Chat History Extensions

The ChatHistoryExtentions class provides methods to manage and manipulate chat history. Here is an example:

using Microsoft.SemanticKernel.ChatCompletion;
using SK.Ext;

var chatHistory = new ChatHistory();
chatHistory.RemoveFunctionCall("callId");
chatHistory.ReplaceFunctionCallResult("callId", new { Result = "result" });
chatHistory.RemoveDuplicatedFunctionCallResults();

License

This project is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
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.2 128 3/23/2025
1.0.1 123 3/23/2025
1.0.0 127 3/23/2025