Encamina.Enmarcha.Bot
8.1.5-preview-09
See the version list below for details.
dotnet add package Encamina.Enmarcha.Bot --version 8.1.5-preview-09
NuGet\Install-Package Encamina.Enmarcha.Bot -Version 8.1.5-preview-09
<PackageReference Include="Encamina.Enmarcha.Bot" Version="8.1.5-preview-09" />
paket add Encamina.Enmarcha.Bot --version 8.1.5-preview-09
#r "nuget: Encamina.Enmarcha.Bot, 8.1.5-preview-09"
// Install Encamina.Enmarcha.Bot as a Cake Addin #addin nuget:?package=Encamina.Enmarcha.Bot&version=8.1.5-preview-09&prerelease // Install Encamina.Enmarcha.Bot as a Cake Tool #tool nuget:?package=Encamina.Enmarcha.Bot&version=8.1.5-preview-09&prerelease
Bot
Bot is a project that primarily contains cross-cutting utilities that can be used in a wide variety of projects.
Setup
Nuget package
First, install NuGet. Then, install Encamina.Enmarcha.Bot from the package manager console:
PM> Install-Package Encamina.Enmarcha.Bot
.NET CLI:
First, install .NET CLI. Then, install Encamina.Enmarcha.Bot from the .NET CLI:
dotnet add package Encamina.Enmarcha.Bot
How to use
Below are some of the most important utilities.
ActivityProcessorBase
ActivityProcessorBase
is an abstract class that processes activities from a turn context. It extends the HandlerManagerBase<IActivityHandler>
class and implements the IActivityProcessor
interface.
Usage
To use this class, you need to create a derived class and provide the necessary parameters to the base constructor:
public class MyActivityProcessor : ActivityProcessorBase
{
public MyActivityProcessor(IEnumerable<IActivityHandler> handlers) : base(handlers)
{
}
// Implement other methods as needed
}
Methods
The class defines several methods:
BeginProcessAsync
: Begins the process of an activity.EndProcessAsync
: Ends the process of an activity.ProcessAsync
: Processes an activity based on the HandlerProcessTimes parameter.
Adapters
BotCloudAdapterWithErrorHandlerBase
BotCloudAdapterWithErrorHandlerBase
is a class that extends the CloudAdapter
from the Microsoft Bot Framework, providing custom error handling for a bot that can be hosted in different cloud environments.
Usage
To use this class, you need to create an instance of IBotAdapterOptions<BotCloudAdapterWithErrorHandlerBase>
and pass it to the constructor:
var options = new BotAdapterOptions<BotCloudAdapterWithErrorHandlerBase>
{
BotFrameworkAuthentication = new PasswordServiceClientCredentialFactory("MicrosoftAppId", "MicrosoftAppPassword"),
Logger = LoggerFactory.Create(builder => builder.AddConsole()).CreateLogger<BotCloudAdapterWithErrorHandlerBase>()
};
var adapter = new BotCloudAdapterWithErrorHandlerBase(options);
This will create a new instance of BotCloudAdapterWithErrorHandlerBase with the provided options. The OnTurnError property is set to ErrorHandlerAsync, which handles errors during the bot's turn.
Middleware
The class also defines a list of default middleware rules that the bot will use:
TelemetryInitializerMiddleware
: This middleware initializes telemetry for the bot. It's important to note that this middleware calls
TelemetryLoggerMiddleware
, so adding TelemetryLoggerMiddleware
as middleware will produce repeated log entries.
TranscriptLoggerMiddleware
: This middleware logs the transcript of the conversation.
ShowTypingMiddleware
: This middleware sends typing indicators to the user while the bot is processing the message.
AutoSaveStateMiddleware
: This middleware automatically saves the bot's state after each turn.
BotAdapterOptionsBase
BotAdapterOptionsBase
is an abstract class that provides common options for a bot adapter. It implements the IBotAdapterOptions
interface.
Usage
To use this class, you need to create a derived class and provide the necessary parameters to the base constructor:
public class MyBotAdapterOptions : BotAdapterOptionsBase
{
public MyBotAdapterOptions(BotFrameworkAuthentication botFrameworkAuthentication, IBotTelemetryClient botTelemetryClient, IEnumerable<BotState> botStates, IEnumerable<IMiddleware> botMiddlewares)
: base(botFrameworkAuthentication, botTelemetryClient, botStates, botMiddlewares)
{
}
}
Cards
CardActionFactory
CardActionFactory
is a static class that contains utility methods to create various CardAction
objects. CardAction
is a class from the Microsoft Bot Framework that represents an action that can be performed from a card.
Usage
You can use the methods of this class to create CardAction
objects:
var emptyAction = CardActionFactory.EmptyAction("Some text");
var value = new MyActivityValue(); // MyActivityValue must inherit from ActivityValueBase
var messageBackAction = CardActionFactory.MessageBackAction(value, "Some text", "https://example.com/image.png");
Methods
The class defines several methods:
EmptyAction
: Creates a CardAction without an action type and only text.MessageBackAction
: Creates a CardAction that can be used to message back the bot with some values.
Controllers
BotBaseController
BotBaseController
is an abstract class that extends the ControllerBase
class from ASP.NET Core. It's designed to handle requests from web chats or DirectLine clients.
Usage
To use this class, you need to create a derived class and provide the necessary parameters to the base constructor:
public class MyBotController : BotBaseController
{
public MyBotController(IBotFrameworkHttpAdapter adapter, IBot bot) : base(adapter, bot)
{
}
public override async Task HandleAsync()
{
// Implement your own logic to handle the request
}
}
You can then use your derived controller in your ASP.NET Core application:
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<IBotFrameworkHttpAdapter, BotFrameworkHttpAdapter>();
services.AddSingleton<IBot, MyBot>();
services.AddControllers();
}
Methods
The class defines a method:
HandleAsync
: Handles a request for the bot. This method is virtual and can be overridden in a derived class.
Extensions - ILoggingBuilderExtensions
ILoggingBuilderExtensions
is a static class that contains an extension method for the ILoggingBuilder
interface. It's designed to add an Application Insights logger to the logging factory.
Usage
You can use the AddApplicationInsigthsConversationScoped
method to add an Application Insights logger to your logging factory:
public void ConfigureServices(IServiceCollection services)
{
services.AddLogging(builder =>
{
builder.AddApplicationInsigthsConversationScoped(
configureTelemetryConfiguration: config => { /* Configure telemetry here */ },
configureApplicationInsightsLoggerOptions: options => { /* Configure logger options here */ }
);
});
}
Methods
The class defines a method:
AddApplicationInsigthsConversationScoped
: Adds an Application Insights logger named ApplicationInsigthsConversationScopedLoggerProvider to the factory.
Extensions - IServiceCollectionExtensions
IServiceCollectionExtensions
is a static class that contains extension methods for the IServiceCollection
interface. It's designed to add services to the service collection, which is a fundamental part of the dependency injection system in ASP.NET Core.
Usage
You can use the AddDefaultBotStates
method to add default bot states to your service collection:
public void ConfigureServices(IServiceCollection services)
{
services.AddDefaultBotStates();
}
Methods
The class defines a method:
AddDefaultBotStates
: Adds default bot states to the service collection. These default bot states areConversationState
andUserState
.
Greetings
LocalizedHeroCardGreetingsOptionsFromTableStorage
LocalizedHeroCardGreetingsOptionsFromTableStorage
is a class that provides localized options for greeting messages based on hero cards. The data is stored in Azure Table Storage. It implements the ILocalizedHeroCardGreetingsOptions
interface.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
var tableConnectionString = "Your Azure Table Storage connection string";
var tableName = "Your Azure Table Storage table name";
var defaultLocale = "en-US"; // The default locale
var cacheAbsoluteExpirationSeconds = 86400; // The cache expiration time in seconds
IMemoryCache memoryCache = null; // An optional memory cache
var options = new LocalizedHeroCardGreetingsOptionsFromTableStorage(tableConnectionString, tableName, defaultLocale, cacheAbsoluteExpirationSeconds, memoryCache);
You can then use this instance to get localized greeting messages based on hero cards. The exact usage will depend on how the ILocalizedHeroCardGreetingsOptions interface and its methods are used in your application.
Constructor
The class has a constructor:
LocalizedHeroCardGreetingsOptionsFromTableStorage
: Initializes a new instance of the class. It takes a connection string and table name for Azure Table Storage, a default locale, an expiration time for the cache, and an optional memory cache.
LocalizedHeroCardGreetingsProvider
LocalizedHeroCardGreetingsProvider
is a class that sends a greeting message using a HeroCard
. The message is localized based on the culture info from the activity. It extends the GreetingsProviderBase
class.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
var options = new LocalizedHeroCardGreetingsOptionsFromTableStorage(/* parameters here */);
var logger = LoggerFactory.Create(builder => builder.AddConsole()).CreateLogger<LocalizedHeroCardGreetingsProvider>();
var provider = new LocalizedHeroCardGreetingsProvider(options, logger);
You can then use this instance to send a greeting message:
await provider.SendAsync(turnContext, cancellationToken);
Constructor and Properties
LocalizedHeroCardGreetingsProvider
: Initializes a new instance of the class. It takes greetings options with values to build a HeroCard and a logger for this greetings provider.Options
: Gets the current greetings options with values to build a HeroCard.
Methods
SendAsync
: Sends a greeting message using aHeroCard
. The message is localized based on the culture info from the activity.
LocalizedResponseGreetingsProvider
LocalizedResponseGreetingsProvider
is a class that sends a greeting message based on responses retrieved from an IIntentResponsesProvider
. The message is localized based on the culture info from the activity. It extends the GreetingsProviderBase
class.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
IIntentResponsesProvider responsesProvider = /* Your IIntentResponsesProvider instance */;
string defaultLocale = "en-US"; // The default locale
string intentName = "Greetings"; // The expected greetings intent name
var provider = new LocalizedResponseGreetingsProvider(responsesProvider, defaultLocale, intentName);
You can then use this instance to send a greeting message:
await provider.SendAsync(turnContext, cancellationToken);
Constructor
LocalizedResponseGreetingsProvider
: Initializes a new instance of the class. It takes anIIntentResponsesProvider
, a default locale, and an intent name.
Methods
SendAsync
: Sends a greeting message based on responses retrieved from anIIntentResponsesProvider
. The message is localized based on the culture info from the activity.
Responses
TableStorageResponseProvider
TableStorageResponseProvider
is a class that provides responses based on values configured and stored in an Azure Table Storage. It implements the IIntentResponsesProvider
interface.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
string tableConnectionString = "Your Azure Table Storage connection string";
string tableName = "Your table name";
string defaultLocale = "en-US";
string intentCounterSeparator = "-";
double cacheAbsoluteExpirationSeconds = 86400;
IMemoryCache memoryCache = new MemoryCache(new MemoryCacheOptions());
var responseProvider = new TableStorageResponseProvider(tableConnectionString, tableName, defaultLocale, intentCounterSeparator, cacheAbsoluteExpirationSeconds, memoryCache);
You can then use this instance to get responses:
var responses = await responseProvider.GetResponsesAsync("YourIntent", "en-US");
Constructor
TableStorageResponseProvider
: Initializes a new instance of the class. It takes a table connection string, a table name, a default locale, an intent counter separator, a cache absolute expiration time in seconds, and anIMemoryCache
.
IIntentResponsesProvider Methods
As an implementation of the IIntentResponsesProvider
interface, this class should implement methods such as GetResponsesAsync
Logging
ApplicationInsightsConversationScopedLoggerEventSource
ApplicationInsightsConversationScopedLoggerEventSource
is a class that logs error messages to Application Insights. It extends the EventSource
class.
Usage
You can use the FailedToLog
method to log an error message to Application Insights:
string errorMessage = "An error occurred.";
string applicationName = "MyApplication"; // Optional
ApplicationInsightsConversationScopedLoggerEventSource.Log.FailedToLog(errorMessage, applicationName);
Constructor and Properties
ApplicationInsightsConversationScopedLoggerEventSource
: Initializes a new instance of the class. It initializes theapplicationName
field with the name of the entry assembly.Log
: Gets the instance of the logger event source.
Methods
FailedToLog
: Logs an error message to Application Insights. It takes an error message and an optional application name as parameters.
ApplicationInsigthsConversationScopedLogger
ApplicationInsigthsConversationScopedLogger
is a class that forwards log messages as Application Insights trace events and tracks the ConversationId
as a property in the telemetry. It implements the ILogger
interface.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
string categoryName = "MyCategory";
TelemetryClient telemetryClient = new TelemetryClient();
ApplicationInsightsConversationScopedLoggerOptions options = new ApplicationInsightsConversationScopedLoggerOptions();
IHttpContextAccessor httpContextAccessor = new HttpContextAccessor();
var logger = new ApplicationInsigthsConversationScopedLogger(categoryName, telemetryClient, options, httpContextAccessor);
You can then use this instance to log messages:
logger.Log(LogLevel.Information, "This is a log message.");
Constructor
ApplicationInsigthsConversationScopedLogger
: Initializes a new instance of the class. It takes a category name, a TelemetryClient, an ApplicationInsightsConversationScopedLoggerOptions, and an IHttpContextAccessor.
ILogger Methods
As an implementation of the ILogger
interface, this class should implement methods such as Log
, IsEnabled
, and BeginScope
.
ApplicationInsigthsConversationScopedLoggerProvider
ApplicationInsigthsConversationScopedLoggerProvider
is a class that creates instances of ApplicationInsigthsConversationScopedLogger
. It implements the ILoggerProvider
and ISupportExternalScope
interfaces.
Usage
To use this class, you need to create an instance and provide the necessary parameters:
IOptions<ApplicationInsightsConversationScopedLoggerOptions> options = Options.Create(new ApplicationInsightsConversationScopedLoggerOptions());
TelemetryClient telemetryClient = new TelemetryClient();
IHttpContextAccessor httpContextAccessor = new HttpContextAccessor();
var loggerProvider = new ApplicationInsigthsConversationScopedLoggerProvider(options, telemetryClient, httpContextAccessor);
You can then use this instance to create a logger:
ILogger logger = loggerProvider.CreateLogger("MyCategory");
Constructor
ApplicationInsigthsConversationScopedLoggerProvider
: Initializes a new instance of the class. It takes anIOptions<ApplicationInsightsConversationScopedLoggerOptions>
, aTelemetryClient
, and anIHttpContextAccessor
.
ILoggerProvider Methods
As an implementation of the ILoggerProvider
interface, this class should implement methods such as CreateLogger
and Dispose
.
Middlewares
ConversationStateLoggerMiddleware
ConversationStateLoggerMiddleware
is a middleware that automatically saves logger in conversation state. It implements the IMiddleware
interface.
Usage
To use this middleware, you need to create an instance and provide the necessary parameters:
ConversationState conversationState = new ConversationState(new MemoryStorage());
var middleware = new ConversationStateLoggerMiddleware(conversationState);
You can then add this middleware to your bot:
botAdapter.Use(middleware);
GitHub Copilot: This C# code defines a class ConversationStateLoggerMiddleware
that implements the IMiddleware
interface. This middleware is designed to automatically save logger in conversation state.
Here's a brief explanation of the key components:
ConversationStateLoggerMiddleware
: This is the constructor for the class. It takes aConversationState
as a parameter, which is used to initialize theconversationState
field.OnTurnAsync
: This method saves the activity of the context inBotState
by conversation id. It takes aITurnContext
, aNextDelegate
, and an optionalCancellationToken
as parameters.
Here's how you might include this in a README:
ConversationStateLoggerMiddleware
ConversationStateLoggerMiddleware
is a middleware that automatically saves logger in conversation state. It implements the IMiddleware
interface.
Usage
To use this middleware, you need to create an instance and provide the necessary parameters:
ConversationState conversationState = new ConversationState(new MemoryStorage());
var middleware = new ConversationStateLoggerMiddleware(conversationState);
You can then add this middleware to your bot:
botAdapter.Use(middleware);
Constructor
ConversationStateLoggerMiddleware
: Initializes a new instance of the class. It takes aConversationState
.
IMiddleware Methods
As an implementation of the IMiddleware
interface, this class should implement methods such as OnTurnAsync
. This method saves the activity of the context in BotState
by conversation id.
DetectedLanguageTranslatorMiddleware
DetectedLanguageTranslatorMiddleware
is a middleware that automatically translates from a detected language to a configured translation language. It implements the IMiddleware
interface.
Usage
To use this middleware, you need to create an instance and provide the necessary parameters:
CultureInfo translateToLanguage = new CultureInfo("en-US");
IEnumerable<CultureInfo> languageExceptions = new List<CultureInfo> { new CultureInfo("fr-FR") };
string languageDetectionServiceName = "YourLanguageDetectionServiceName";
string textTranslationServiceName = "YourTextTranslationServiceName";
ICognitiveServiceProvider cognitiveServiceProvider = new YourCognitiveServiceProvider();
var middleware = new DetectedLanguageTranslatorMiddleware(translateToLanguage, languageExceptions, languageDetectionServiceName, textTranslationServiceName, cognitiveServiceProvider);
You can then add this middleware to your bot:
botAdapter.Use(middleware);
Constructor
DetectedLanguageTranslatorMiddleware
: Initializes a new instance of the class. It takes aCultureInfo
for the language to translate to, anIEnumerable<CultureInfo>
for languages that are exceptions to translate, the names of a language detection cognitive service and a text translation cognitive service, and anICognitiveServiceProvider
to locate these services.
IMiddleware Methods
As an implementation of the IMiddleware
interface, this class should implement methods such as OnTurnAsync
.
StartActivityTranslatorMiddleware
StartActivityTranslatorMiddleware
is a middleware that automatically translates messages sent to consumers during start activities into the language received as Activity.Locale
. It implements the IMiddleware
interface.
Usage
To use this middleware, you need to create an instance and provide the necessary parameters:
string textTranslationServiceName = "YourTextTranslationServiceName";
ICognitiveServiceProvider cognitiveServiceProvider = new YourCognitiveServiceProvider();
var middleware = new StartActivityTranslatorMiddleware(textTranslationServiceName, cognitiveServiceProvider);
You can then add this middleware to your bot:
botAdapter.Use(middleware);
Constructors
StartActivityTranslatorMiddleware
: Initializes a new instance of the class. It takes atextTranslationServiceName
and anICognitiveServiceProvider
to locate a language detection and a text translation service from the given names.StartActivityTranslatorMiddleware
: Initializes a new instance of the class. It takes anITextTranslationService
to translate texts.
IMiddleware Methods
As an implementation of the IMiddleware
interface, this class should implement methods such as OnTurnAsync
.
TranslatorUtils
TranslatorUtils
is a static class that provides utility methods for translation operations.
Usage
You can use the methods in this class as follows:
IDictionary<string, string> translations = new Dictionary<string, string> { { "en-US", "Hello" } };
CultureInfo language = new CultureInfo("en-US");
string translation = TranslatorUtils.GetTranslation(translations, language, "Default text");
ITextTranslationService translationService = new YourTextTranslationService();
IList<Activity> activities = new List<Activity> { new Activity { Type = ActivityTypes.Message, Text = "Hola" } };
CultureInfo fromLanguage = new CultureInfo("es-ES");
CultureInfo toLanguage = new CultureInfo("en-US");
CancellationToken cancellationToken = new CancellationToken();
await TranslatorUtils.TranslateMessagesAsync(translationService, activities, fromLanguage, toLanguage, cancellationToken);
Methods
GetTranslation
: Retrieves a translation from a dictionary of translations based on the provided language. If no translation is found, it returns a default text.TranslateMessagesAsync
: Translates message type activities from one language to another using a providedITextTranslationService
. It also handles cancellation through aCancellationToken
.
Options
ApplicationInsightsConversationScopedLoggerOptions
ApplicationInsightsConversationScopedLoggerOptions
is a class that customizes the behavior of the tracing information sent to Application Insights using ApplicationInsigthsConversationScopedLogger
. It inherits from ApplicationInsightsLoggerOptions
.
Usage
To use this class, you need to create an instance and optionally set the EventsToTrack
:
var options = new ApplicationInsightsConversationScopedLoggerOptions
{
EventsToTrack = new List<string> { "Event1", "Event2" }
};
Constructor
ApplicationInsightsConversationScopedLoggerOptions
: Initializes a new instance of the class. It doesn't take any parameters.
Properties
EventsToTrack
: Gets or sets a list of event names that should be tracked. If null, all events will be tracked.
Question Answering
SendAnswersProcessorBase
SendAnswersProcessorBase
is an abstract class that processes and handles a collection of answers. It inherits from OrderableHandlerManagerBase<ISendAnswersHandler>
and implements ISendAnswersProcessor
interface.
Usage
To use this class, you need to create a derived class and provide the necessary implementations:
public class MySendAnswersProcessor : SendAnswersProcessorBase
{
public MySendAnswersProcessor(IEnumerable<ISendAnswersHandler> handlers) : base(handlers)
{
}
public override Task<SendResponseResult> SendResponseAsync<TAnswer>(ITurnContext context, IEnumerable<TAnswer> answers, CancellationToken cancellationToken)
{
// Your implementation here
}
}
Constructor
SendAnswersProcessorBase
: Initializes a new instance of the class. It takes anIEnumerable<ISendAnswersHandler>
as a parameter, which is a collection of answer handlers for this processor.
Methods
SendResponseAsync
: Sends a response by processing and handling a given collection of answers. It takes anITurnContext
, anIEnumerable<TAnswer>
, and aCancellationToken
as parameters. It returns aTask<SendResponseResult>
.
SimpleAnswersHandler
SimpleAnswersHandler
is a class that sends the first answer found with the highest confidence score as the response. It implements the ISendAnswersHandler
interface.
Usage
To use this class, you need to create an instance:
var handler = new SimpleAnswersHandler();
ITurnContext context = new YourTurnContext();
IEnumerable<IAnswer> answers = new List<IAnswer> { new YourAnswer() };
CancellationToken cancellationToken = new CancellationToken();
SendResponseResult result = await handler.HandleSendResponseAsync(context, answers, cancellationToken);
Constructor
SimpleAnswersHandler
: Initializes a new instance of the class. It doesn't take any parameters.
Properties
Order
: Ensures that this is the last response handler to be evaluated.
Methods
HandleSendResponseAsync
: Sends a response by handling a given collection of answers. They take anITurnContext
, anIEnumerable<TAnswer>
, and aCancellationToken
as parameters. They return aTask<SendResponseResult>
.
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
- Azure.Data.Tables (>= 12.8.3)
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Encamina.Enmarcha.AI (>= 8.1.5-preview-09)
- Encamina.Enmarcha.AI.LanguagesDetection.Abstractions (>= 8.1.5-preview-09)
- Encamina.Enmarcha.AI.TextsTranslation.Abstractions (>= 8.1.5-preview-09)
- Encamina.Enmarcha.Bot.Abstractions (>= 8.1.5-preview-09)
- Encamina.Enmarcha.DependencyInjection (>= 8.1.5-preview-09)
- Encamina.Enmarcha.Entities.Abstractions (>= 8.1.5-preview-09)
- Microsoft.Azure.KeyVault.Core (>= 3.0.5)
- Microsoft.Bot.Builder.Azure (>= 4.22.2)
- Microsoft.Bot.Builder.Azure.Blobs (>= 4.22.2)
- Microsoft.Bot.Builder.Dialogs (>= 4.22.2)
- Microsoft.Bot.Builder.Integration.ApplicationInsights.Core (>= 4.22.2)
- Microsoft.Bot.Builder.Integration.AspNet.Core (>= 4.22.2)
- System.Linq.Async (>= 6.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Encamina.Enmarcha.Bot:
Package | Downloads |
---|---|
Encamina.Enmarcha.Bot.Skills.QuestionAnswering
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.2.0 | 272 | 10/22/2024 |
8.2.0-preview-01-m01 | 115 | 9/17/2024 |
8.1.9-preview-02 | 91 | 10/22/2024 |
8.1.9-preview-01 | 224 | 10/4/2024 |
8.1.8 | 182 | 9/23/2024 |
8.1.8-preview-07 | 546 | 9/12/2024 |
8.1.8-preview-06 | 159 | 9/11/2024 |
8.1.8-preview-05 | 128 | 9/10/2024 |
8.1.8-preview-04 | 240 | 8/16/2024 |
8.1.8-preview-03 | 163 | 8/13/2024 |
8.1.8-preview-02 | 132 | 8/13/2024 |
8.1.8-preview-01 | 154 | 8/12/2024 |
8.1.7 | 143 | 8/7/2024 |
8.1.7-preview-09 | 173 | 7/3/2024 |
8.1.7-preview-08 | 114 | 7/2/2024 |
8.1.7-preview-07 | 108 | 6/10/2024 |
8.1.7-preview-06 | 116 | 6/10/2024 |
8.1.7-preview-05 | 122 | 6/6/2024 |
8.1.7-preview-04 | 111 | 6/6/2024 |
8.1.7-preview-03 | 146 | 5/24/2024 |
8.1.7-preview-02 | 135 | 5/10/2024 |
8.1.7-preview-01 | 145 | 5/8/2024 |
8.1.6 | 1,228 | 5/7/2024 |
8.1.6-preview-08 | 98 | 5/2/2024 |
8.1.6-preview-07 | 128 | 4/29/2024 |
8.1.6-preview-06 | 411 | 4/26/2024 |
8.1.6-preview-05 | 145 | 4/24/2024 |
8.1.6-preview-04 | 154 | 4/22/2024 |
8.1.6-preview-03 | 136 | 4/22/2024 |
8.1.6-preview-02 | 162 | 4/17/2024 |
8.1.6-preview-01 | 205 | 4/15/2024 |
8.1.5 | 167 | 4/15/2024 |
8.1.5-preview-15 | 128 | 4/10/2024 |
8.1.5-preview-14 | 145 | 3/20/2024 |
8.1.5-preview-13 | 114 | 3/18/2024 |
8.1.5-preview-12 | 143 | 3/13/2024 |
8.1.5-preview-11 | 125 | 3/13/2024 |
8.1.5-preview-10 | 148 | 3/13/2024 |
8.1.5-preview-09 | 128 | 3/12/2024 |
8.1.5-preview-08 | 124 | 3/12/2024 |
8.1.5-preview-07 | 134 | 3/8/2024 |
8.1.5-preview-06 | 242 | 3/8/2024 |
8.1.5-preview-05 | 117 | 3/7/2024 |
8.1.5-preview-04 | 139 | 3/7/2024 |
8.1.5-preview-03 | 159 | 3/7/2024 |
8.1.5-preview-02 | 200 | 2/28/2024 |
8.1.5-preview-01 | 131 | 2/19/2024 |
8.1.4 | 259 | 2/15/2024 |
8.1.3 | 155 | 2/13/2024 |
8.1.3-preview-07 | 131 | 2/13/2024 |
8.1.3-preview-06 | 150 | 2/12/2024 |
8.1.3-preview-05 | 139 | 2/9/2024 |
8.1.3-preview-04 | 110 | 2/8/2024 |
8.1.3-preview-03 | 123 | 2/7/2024 |
8.1.3-preview-02 | 145 | 2/2/2024 |
8.1.3-preview-01 | 108 | 2/2/2024 |
8.1.2 | 182 | 2/1/2024 |
8.1.2-preview-9 | 162 | 1/22/2024 |
8.1.2-preview-8 | 126 | 1/19/2024 |
8.1.2-preview-7 | 123 | 1/19/2024 |
8.1.2-preview-6 | 102 | 1/19/2024 |
8.1.2-preview-5 | 114 | 1/19/2024 |
8.1.2-preview-4 | 131 | 1/19/2024 |
8.1.2-preview-3 | 113 | 1/18/2024 |
8.1.2-preview-2 | 114 | 1/18/2024 |
8.1.2-preview-16 | 144 | 1/31/2024 |
8.1.2-preview-15 | 149 | 1/31/2024 |
8.1.2-preview-14 | 244 | 1/25/2024 |
8.1.2-preview-13 | 124 | 1/25/2024 |
8.1.2-preview-12 | 130 | 1/23/2024 |
8.1.2-preview-11 | 115 | 1/23/2024 |
8.1.2-preview-10 | 112 | 1/22/2024 |
8.1.2-preview-1 | 110 | 1/18/2024 |
8.1.1 | 173 | 1/18/2024 |
8.1.0 | 131 | 1/18/2024 |
8.0.3 | 210 | 12/29/2023 |
8.0.1 | 160 | 12/14/2023 |
8.0.0 | 176 | 12/7/2023 |
6.0.4.3 | 187 | 12/29/2023 |
6.0.4.2 | 205 | 12/20/2023 |
6.0.4.1 | 220 | 12/19/2023 |
6.0.4 | 195 | 12/4/2023 |
6.0.3.20 | 173 | 11/27/2023 |
6.0.3.19 | 175 | 11/22/2023 |