SK_Ext 1.0.2
dotnet add package SK_Ext --version 1.0.2
NuGet\Install-Package SK_Ext -Version 1.0.2
<PackageReference Include="SK_Ext" Version="1.0.2" />
<PackageVersion Include="SK_Ext" Version="1.0.2" />
<PackageReference Include="SK_Ext" />
paket add SK_Ext --version 1.0.2
#r "nuget: SK_Ext, 1.0.2"
#addin nuget:?package=SK_Ext&version=1.0.2
#tool nuget:?package=SK_Ext&version=1.0.2
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 | Versions 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. |
-
net9.0
- Microsoft.SemanticKernel (>= 1.40.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.