Encamina.Enmarcha.Bot.Skills.QuestionAnswering
8.1.2-preview-14
See the version list below for details.
dotnet add package Encamina.Enmarcha.Bot.Skills.QuestionAnswering --version 8.1.2-preview-14
NuGet\Install-Package Encamina.Enmarcha.Bot.Skills.QuestionAnswering -Version 8.1.2-preview-14
<PackageReference Include="Encamina.Enmarcha.Bot.Skills.QuestionAnswering" Version="8.1.2-preview-14" />
paket add Encamina.Enmarcha.Bot.Skills.QuestionAnswering --version 8.1.2-preview-14
#r "nuget: Encamina.Enmarcha.Bot.Skills.QuestionAnswering, 8.1.2-preview-14"
// Install Encamina.Enmarcha.Bot.Skills.QuestionAnswering as a Cake Addin #addin nuget:?package=Encamina.Enmarcha.Bot.Skills.QuestionAnswering&version=8.1.2-preview-14&prerelease // Install Encamina.Enmarcha.Bot.Skills.QuestionAnswering as a Cake Tool #tool nuget:?package=Encamina.Enmarcha.Bot.Skills.QuestionAnswering&version=8.1.2-preview-14&prerelease
Bot Skills Question Answering
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 anIServiceCollection
, anAction<QuestionAnsweringSkillOptions>
, and an optionalServiceLifetime
as parameters. It returns theIServiceCollection
for chaining additional calls.AddCosmosDbSupport
: Adds support for Cosmos DB with configuration parameters from the current configuration. It takes anIServiceCollection
, anIConfiguration
, and an optionalServiceLifetime
as parameters. It returns theIServiceCollection
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 stringid
, aQuestionAnsweringDialogServices
object, and anIOptionsMonitor<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
andisSourcesProcessorAvailable
: 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 tofalse
.NormalizeRemoveCharacters
: Gets or sets a collection of characters to remove from the message when normalizing.
Product | Versions 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. |
-
.NETStandard 2.1
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Encamina.Enmarcha.AI.QuestionsAnswering.Abstractions (>= 8.1.2-preview-14)
- Encamina.Enmarcha.Bot (>= 8.1.2-preview-14)
- Encamina.Enmarcha.Bot.Abstractions (>= 8.1.2-preview-14)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Microsoft.Extensions.Options.DataAnnotations (>= 8.0.0)
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.2.0 | 79 | 10/22/2024 |
8.2.0-preview-01-m01 | 100 | 9/17/2024 |
8.1.9-preview-02 | 58 | 10/22/2024 |
8.1.9-preview-01 | 73 | 10/4/2024 |
8.1.8 | 100 | 9/23/2024 |
8.1.8-preview-07 | 76 | 9/12/2024 |
8.1.8-preview-06 | 82 | 9/11/2024 |
8.1.8-preview-05 | 87 | 9/10/2024 |
8.1.8-preview-04 | 104 | 8/16/2024 |
8.1.8-preview-03 | 88 | 8/13/2024 |
8.1.8-preview-02 | 99 | 8/13/2024 |
8.1.8-preview-01 | 105 | 8/12/2024 |
8.1.7 | 87 | 8/7/2024 |
8.1.7-preview-09 | 83 | 7/3/2024 |
8.1.7-preview-08 | 94 | 7/2/2024 |
8.1.7-preview-07 | 79 | 6/10/2024 |
8.1.7-preview-06 | 82 | 6/10/2024 |
8.1.7-preview-05 | 80 | 6/6/2024 |
8.1.7-preview-04 | 92 | 6/6/2024 |
8.1.7-preview-03 | 91 | 5/24/2024 |
8.1.7-preview-02 | 87 | 5/10/2024 |
8.1.7-preview-01 | 110 | 5/8/2024 |
8.1.6 | 107 | 5/7/2024 |
8.1.6-preview-08 | 51 | 5/2/2024 |
8.1.6-preview-07 | 85 | 4/29/2024 |
8.1.6-preview-06 | 104 | 4/26/2024 |
8.1.6-preview-05 | 95 | 4/24/2024 |
8.1.6-preview-04 | 79 | 4/22/2024 |
8.1.6-preview-03 | 88 | 4/22/2024 |
8.1.6-preview-02 | 109 | 4/17/2024 |
8.1.6-preview-01 | 83 | 4/15/2024 |
8.1.5 | 119 | 4/15/2024 |
8.1.5-preview-15 | 84 | 4/10/2024 |
8.1.5-preview-14 | 84 | 3/20/2024 |
8.1.5-preview-13 | 81 | 3/18/2024 |
8.1.5-preview-12 | 93 | 3/13/2024 |
8.1.5-preview-11 | 94 | 3/13/2024 |
8.1.5-preview-10 | 85 | 3/13/2024 |
8.1.5-preview-09 | 99 | 3/12/2024 |
8.1.5-preview-08 | 96 | 3/12/2024 |
8.1.5-preview-07 | 92 | 3/8/2024 |
8.1.5-preview-06 | 80 | 3/8/2024 |
8.1.5-preview-05 | 79 | 3/7/2024 |
8.1.5-preview-04 | 92 | 3/7/2024 |
8.1.5-preview-03 | 87 | 3/7/2024 |
8.1.5-preview-02 | 94 | 2/28/2024 |
8.1.5-preview-01 | 85 | 2/19/2024 |
8.1.4 | 135 | 2/15/2024 |
8.1.3 | 119 | 2/13/2024 |
8.1.3-preview-07 | 86 | 2/13/2024 |
8.1.3-preview-06 | 98 | 2/12/2024 |
8.1.3-preview-05 | 112 | 2/9/2024 |
8.1.3-preview-04 | 84 | 2/8/2024 |
8.1.3-preview-03 | 80 | 2/7/2024 |
8.1.3-preview-02 | 90 | 2/2/2024 |
8.1.3-preview-01 | 86 | 2/2/2024 |
8.1.2 | 114 | 2/1/2024 |
8.1.2-preview-9 | 96 | 1/22/2024 |
8.1.2-preview-8 | 95 | 1/19/2024 |
8.1.2-preview-7 | 87 | 1/19/2024 |
8.1.2-preview-6 | 79 | 1/19/2024 |
8.1.2-preview-5 | 76 | 1/19/2024 |
8.1.2-preview-4 | 92 | 1/19/2024 |
8.1.2-preview-3 | 90 | 1/18/2024 |
8.1.2-preview-2 | 84 | 1/18/2024 |
8.1.2-preview-16 | 101 | 1/31/2024 |
8.1.2-preview-15 | 100 | 1/31/2024 |
8.1.2-preview-14 | 84 | 1/25/2024 |
8.1.2-preview-13 | 84 | 1/25/2024 |
8.1.2-preview-12 | 85 | 1/23/2024 |
8.1.2-preview-11 | 89 | 1/23/2024 |
8.1.2-preview-10 | 83 | 1/22/2024 |
8.1.2-preview-1 | 86 | 1/18/2024 |
8.1.1 | 123 | 1/18/2024 |
8.1.0 | 97 | 1/18/2024 |
8.0.3 | 159 | 12/29/2023 |
8.0.1 | 146 | 12/14/2023 |
8.0.0 | 146 | 12/7/2023 |
6.0.4.3 | 113 | 12/29/2023 |
6.0.4.2 | 126 | 12/20/2023 |
6.0.4.1 | 97 | 12/19/2023 |
6.0.4 | 121 | 12/4/2023 |
6.0.3.20 | 131 | 11/27/2023 |
6.0.3.19 | 127 | 11/22/2023 |