Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering 8.1.6

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering --version 8.1.6
NuGet\Install-Package Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering -Version 8.1.6
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="Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering" Version="8.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering --version 8.1.6
#r "nuget: Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering, 8.1.6"
#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.
// Install Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering&version=8.1.6

// Install Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering&version=8.1.6

Semantic Kernel - Question Answering Plugin

Nuget package

The Question Answering Plugin is a project that provides functionality as a plugin for answering questions based on a given context or based on the information stored in the Semantic Kernel's memory.

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.SemanticKernel.QuestionAnswering.Plugins from the package manager console:

PM> Install-Package Encamina.Enmarcha.SemanticKernel.QuestionAnswering.Plugins

.NET CLI:

Install .NET CLI. Next, install Encamina.Enmarcha.SemanticKernel.QuestionAnswering.Plugins from the .NET CLI:

dotnet add package Encamina.Enmarcha.SemanticKernel.QuestionAnswering.Plugins

How to use

Within the QuestionAnsweringPlugin, there are two available functions for answering questions. On the one hand, there is a function in QuestionAnsweringFromContext, which, given a context and a question, it answers the question based on the provided context. On the other hand, the plugin QuestionAnsweringFromMemoryQuery searches within Semantic Kernel's memory for the most relevant results to the posed question, which are provided as the context to answer the question.

QuestionAnsweringFromContext Function

This is a semantic function (skprompt.txt/config.json) within Semantic Kernel that provides an answer to a question based on a provided context using Language Model Models (LLMs) such as OpenAI, Azure OpenAI, to name but a few.

To use it, the first step is to import it into Semantic Kernel.

// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
   // ...
});

// ... 

builder.Services.AddScoped(sp =>
{
    var kernel = new KernelBuilder()
        .WithAzureChatCompletionService("<YOUR DEPLOYMENT NAME>", "<YOUR AZURE ENDPOINT>", "<YOUR API KEY>", alsoAsTextCompletion: true)
        //.WithAzureTextCompletionService("<YOUR DEPLOYMENT NAME>", "<YOUR AZURE ENDPOINT>", "<YOUR API KEY>")
        /// ...
        .Build();

    // ...

    kernel.ImportQuestionAnsweringPlugin(sp, ILengthFunctions.LengthByTokenCount);

    return kernel;
});

Now you can inject the kernel via constructor, and the question capabilities are already available.

public class MyClass
{
    private readonly Kernel kernel;

    public MyClass(Kernel kernel)
    {
        this.kernel = kernel;
    }

    public async Task TestQuestionAnsweringFromContextAsync()
    {
        var contextVariables = new ContextVariables();
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromContext.Parameters.Input, "What year was the French Revolution?");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromContext.Parameters.Context, 
            @"The French Revolution[a] was a period of radical political and societal change in France that began with the Estates General of 1789, 
and ended with the formation of the French Consulate in November 1799. Many of its ideas are considered fundamental principles of liberal democracy,
while the values and institutions it created remain central to French political discourse. Its causes are generally agreed to be a combination of social,
political and economic factors, which the Ancien Régime proved unable to manage. In May 1789, widespread social distress led to the convocation of the Estates General,
which was converted into a National Assembly in June. Continuing unrest culminated in the Storming of the Bastille on 14 July, which led to a series of radical 
measures by the Assembly, including the abolition of feudalism, the imposition of state control over the Catholic Church in France, and extension of the right 
to vote.");

        var functionQuestionAnswering = kernel.Func(PluginsInfo.QuestionAnsweringPlugin.Name, PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromContext.Name);

        var resultContext = await kernel.RunAsync(contextVariables, functionQuestionAnswering);
    }
}

In the previous example, the question has been included within the Input parameter, and the context from which the answer is derived is in the Context parameter. Within resultContext, you will find texts that say something like The French Revolution began in 1789.

QuestionAnsweringFromMemoryQuery Function

This is a native function of Semantic Kernel that, given a question, searches for the most relevant result within Semantic Kernel's memory and uses that context to call the semantic function QuestionAnsweringFromContext in order to generate a response.

To use it, the first step is to import it into Semantic Kernel.

// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
   // ...
});

// ... 

builder.Services.AddScoped(sp =>
{
    var kernel = new KernelBuilder()
        .WithAzureChatCompletionService("<YOUR DEPLOYMENT NAME>",  "<YOUR AZURE ENDPOINT>", "<YOUR API KEY>", alsoAsTextCompletion: true)
        .WithAzureTextEmbeddingGenerationService("<YOUR DEPLOYMENT NAME>",  "<YOUR AZURE ENDPOINT>", "<YOUR API KEY>")
        //.WithAzureTextCompletionService("<YOUR DEPLOYMENT NAME>", "<YOUR AZURE ENDPOINT>", "<YOUR API KEY>")
        //.WithOpenAITextEmbeddingGenerationService("<YOUR MODEL ID>", "<YOUR API KEY>", "<YOUR API KEY>")
        /// ...
        .Build();

    // ...
    
    var questionAnsweringPlugin = new QuestionAnsweringPlugin(kernel, "<YOUR DEPLOYMENT NAME>", ILengthFunctions.LengthByTokenCount);

    kernel.ImportQuestionAnsweringPlugin(sp, ILengthFunctions.LengthByTokenCount);

    // Requires Encamina.Enmarcha.SemanticKernel.Plugins.Memory nuget
    kernel.ImportMemoryPlugin(ILengthFunctions.LengthByTokenCount);

    return kernel;
});

Now you can inject the kernel via constructor, and the memory question capabilities are already available.

public class MyClass
{
    private readonly Kernel kernel;

    public MyClass(Kernel kernel)
    {
        this.kernel = kernel;
    }

    public async Task TestQuestionAnsweringFromMemoryAsync()
    {
        var contextVariables = new ContextVariables();
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.Question, "What year was the French Revolution?");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.CollectionSeparator, ",");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.CollectionsStr, "collection-1,collection-2");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.MinRelevance, "0.8");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.ResultsLimit, "1");
        contextVariables.Set(PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Parameters.ResponseTokenLimit, "300");

        var functionQuestionAnswering = kernel.Func(PluginsInfo.QuestionAnsweringPlugin.Name, PluginsInfo.QuestionAnsweringPlugin.Functions.QuestionAnsweringFromMemoryQuery.Name);

        var resultContext = await kernel.RunAsync(contextVariables, functionQuestionAnswering);
    }
}
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. 
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
8.1.7-preview-07 55 6/10/2024
8.1.7-preview-06 58 6/10/2024
8.1.7-preview-05 40 6/6/2024
8.1.7-preview-04 38 6/6/2024
8.1.7-preview-03 64 5/24/2024
8.1.7-preview-02 74 5/10/2024
8.1.7-preview-01 79 5/8/2024
8.1.6 96 5/7/2024
8.1.6-preview-08 36 5/2/2024
8.1.6-preview-07 60 4/29/2024
8.1.6-preview-06 95 4/26/2024
8.1.6-preview-05 66 4/24/2024
8.1.6-preview-04 76 4/22/2024
8.1.6-preview-03 61 4/22/2024
8.1.6-preview-02 94 4/17/2024
8.1.6-preview-01 68 4/15/2024
8.1.5 95 4/15/2024
8.1.5-preview-15 70 4/10/2024
8.1.5-preview-14 98 3/20/2024
8.1.5-preview-13 58 3/18/2024
8.1.5-preview-12 84 3/13/2024
8.1.5-preview-11 71 3/13/2024
8.1.5-preview-10 93 3/13/2024
8.1.5-preview-09 65 3/12/2024
8.1.5-preview-08 65 3/12/2024
8.1.5-preview-07 60 3/8/2024
8.1.5-preview-06 182 3/8/2024
8.1.5-preview-05 78 3/7/2024
8.1.5-preview-04 59 3/7/2024
8.1.5-preview-03 65 3/7/2024
8.1.5-preview-02 121 2/28/2024
8.1.5-preview-01 96 2/19/2024
8.1.4 152 2/15/2024
8.1.3 93 2/13/2024
8.1.3-preview-07 54 2/13/2024
8.1.3-preview-06 50 2/12/2024
8.1.3-preview-05 50 2/9/2024
8.1.3-preview-04 49 2/8/2024
8.1.3-preview-03 46 2/7/2024
8.1.3-preview-02 64 2/2/2024
8.1.3-preview-01 62 2/2/2024
8.1.2 93 2/1/2024
8.1.2-preview-9 72 1/22/2024
8.1.2-preview-8 63 1/19/2024
8.1.2-preview-7 58 1/19/2024
8.1.2-preview-6 63 1/19/2024
8.1.2-preview-5 59 1/19/2024
8.1.2-preview-4 61 1/19/2024
8.1.2-preview-3 60 1/18/2024
8.1.2-preview-2 60 1/18/2024
8.1.2-preview-16 63 1/31/2024
8.1.2-preview-15 72 1/31/2024
8.1.2-preview-14 140 1/25/2024
8.1.2-preview-13 55 1/25/2024
8.1.2-preview-12 59 1/23/2024
8.1.2-preview-11 55 1/23/2024
8.1.2-preview-10 69 1/22/2024
8.1.2-preview-1 62 1/18/2024
8.1.1 104 1/18/2024
8.1.0 74 1/18/2024
8.0.3 138 12/29/2023
8.0.1 135 12/14/2023
8.0.0 131 12/7/2023
6.0.4.3 120 12/29/2023
6.0.4.2 134 12/20/2023
6.0.4.1 81 12/19/2023
6.0.4 149 12/4/2023
6.0.3.20 125 11/27/2023
6.0.3.19 123 11/22/2023