Encamina.Enmarcha.Bot.Skills.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.Bot.Skills.QuestionAnswering --version 8.1.6
NuGet\Install-Package Encamina.Enmarcha.Bot.Skills.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.Bot.Skills.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.Bot.Skills.QuestionAnswering --version 8.1.6
#r "nuget: Encamina.Enmarcha.Bot.Skills.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.Bot.Skills.QuestionAnswering as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.Bot.Skills.QuestionAnswering&version=8.1.6

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

Bot Skills Question Answering

Nuget package

This project mainly contains abstractions related to data used by other ENMARCHA NuGet packages or necessary for creating Question Answering skills

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.Bot.Skills.QuestionAnswering from the package manager console:

PM> Install-Package Encamina.Enmarcha.Bot.Skills.QuestionAnswering

.NET CLI:

Install .NET CLI. Next, install Encamina.Enmarcha.Bot.Skills.QuestionAnswering from the .NET CLI:

dotnet add package Encamina.Bot.Skills.QuestionAnswering

How to use

In addition to the abstractions (interfaces, abstract classes, etc.) that have their implementations in other ENMARCHA NuGets in Program.cs

// Add services to the container.
builder.Services.AddQuestionAnsweringSkill(options =>
{
    options.QuestionAnsweringServiceName = "YourServiceName";
    options.DialogName = "YourDialogName";
    options.DialogIntent = "YourDialogIntent";
    options.NormalizeMessage = true;
    options.NormalizeRemoveCharacters = new List<char> { 'a', 'b', 'c' };
}, ServiceLifetime.Singleton);

IServiceCollectionExtensions

IServiceCollectionExtensions is a static class that provides extension methods for IServiceCollection to add and configure services for a question answering skill and Cosmos DB support.

Methods

  • AddQuestionAnsweringSkill: Adds and configures the question answering dialog with given configuration options and question answering service name. It takes an IServiceCollection, an Action<QuestionAnsweringSkillOptions>, and an optional ServiceLifetime as parameters. It returns the IServiceCollection for chaining additional calls.

  • AddCosmosDbSupport: Adds support for Cosmos DB with configuration parameters from the current configuration. It takes an IServiceCollection, an IConfiguration, and an optional ServiceLifetime as parameters. It returns the IServiceCollection for chaining additional calls.

QuestionAnsweringDialog

QuestionAnsweringDialog is a class that defines a dialog for a question answering skill. It inherits from NamedDialogBase and implements the IIntendable interface.

Usage

On Program.cs


// Add bot dialogs...
builder.Services.AddSingleton<QuestionAnsweringDialog>().AddSingleton<Dialog, QuestionAnsweringDialog>();

Constructor

  • QuestionAnsweringDialog: Initializes a new instance of the class. It takes a string id, a QuestionAnsweringDialogServices object, and an IOptionsMonitor<QuestionAnsweringSkillOptions> as parameters.

Fields

  • configurationOptions: Stores the configuration options for this question answering dialog.

  • services: Stores the services required for this question answering dialog.

  • isMetadataProcessorAvailable and isSourcesProcessorAvailable: Indicate the availability of metadata and sources processors.

QuestionAnsweringSkillOptions

QuestionAnsweringSkillOptions is a class that provides configuration options for the question answering dialog.

Usage

To use this class, you need to create an instance and set the necessary properties:

var options = new QuestionAnsweringSkillOptions
{
    QuestionAnsweringServiceName = "YourServiceName",
    DialogName = "YourDialogName",
    DialogIntent = "YourDialogIntent",
    NormalizeMessage = true,
    NormalizeRemoveCharacters = new List<char> { 'a', 'b', 'c' }
};

Constructor

  • QuestionAnsweringSkillOptions: Initializes a new instance of the class. It doesn't take any parameters.

Properties

  • QuestionAnsweringServiceName: Gets or sets the name of the Question Answering service to use by this skill.

  • DialogName: Gets or sets the dialog's name.

  • DialogIntent: Gets or sets the dialog's intent.

  • NormalizeMessage: Gets or sets a value indicating whether the question answering dialog must normalize the message (question) removing specific characters (usually diacritics). Defaults to false.

  • NormalizeRemoveCharacters: Gets or sets a collection of characters to remove from the message when normalizing.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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-02 36 5/10/2024
8.1.7-preview-01 41 5/8/2024
8.1.6 79 5/7/2024
8.1.6-preview-08 26 5/2/2024
8.1.6-preview-07 75 4/29/2024
8.1.6-preview-06 83 4/26/2024
8.1.6-preview-05 70 4/24/2024
8.1.6-preview-04 56 4/22/2024
8.1.6-preview-03 68 4/22/2024
8.1.6-preview-02 79 4/17/2024
8.1.6-preview-01 61 4/15/2024
8.1.5 89 4/15/2024
8.1.5-preview-15 61 4/10/2024
8.1.5-preview-14 69 3/20/2024
8.1.5-preview-13 66 3/18/2024
8.1.5-preview-12 79 3/13/2024
8.1.5-preview-11 74 3/13/2024
8.1.5-preview-10 71 3/13/2024
8.1.5-preview-09 82 3/12/2024
8.1.5-preview-08 78 3/12/2024
8.1.5-preview-07 74 3/8/2024
8.1.5-preview-06 75 3/8/2024
8.1.5-preview-05 56 3/7/2024
8.1.5-preview-04 74 3/7/2024
8.1.5-preview-03 74 3/7/2024
8.1.5-preview-02 74 2/28/2024
8.1.5-preview-01 70 2/19/2024
8.1.4 101 2/15/2024
8.1.3 94 2/13/2024
8.1.3-preview-07 55 2/13/2024
8.1.3-preview-06 79 2/12/2024
8.1.3-preview-05 87 2/9/2024
8.1.3-preview-04 70 2/8/2024
8.1.3-preview-03 66 2/7/2024
8.1.3-preview-02 64 2/2/2024
8.1.3-preview-01 60 2/2/2024
8.1.2 92 2/1/2024
8.1.2-preview-9 74 1/22/2024
8.1.2-preview-8 69 1/19/2024
8.1.2-preview-7 69 1/19/2024
8.1.2-preview-6 59 1/19/2024
8.1.2-preview-5 70 1/19/2024
8.1.2-preview-4 73 1/19/2024
8.1.2-preview-3 65 1/18/2024
8.1.2-preview-2 62 1/18/2024
8.1.2-preview-16 54 1/31/2024
8.1.2-preview-15 81 1/31/2024
8.1.2-preview-14 63 1/25/2024
8.1.2-preview-13 66 1/25/2024
8.1.2-preview-12 62 1/23/2024
8.1.2-preview-11 64 1/23/2024
8.1.2-preview-10 64 1/22/2024
8.1.2-preview-1 69 1/18/2024
8.1.1 100 1/18/2024
8.1.0 78 1/18/2024
8.0.3 132 12/29/2023
8.0.1 123 12/14/2023
8.0.0 119 12/7/2023
6.0.4.3 94 12/29/2023
6.0.4.2 104 12/20/2023
6.0.4.1 81 12/19/2023
6.0.4 102 12/4/2023
6.0.3.20 109 11/27/2023
6.0.3.19 107 11/22/2023