Encamina.Enmarcha.AI.IntentsPrediction.Azure 8.1.5

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

// Install Encamina.Enmarcha.AI.IntentsPrediction.Azure as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.AI.IntentsPrediction.Azure&version=8.1.5

AI - Azure Intent Prediction

Nuget package

Azure Intent Prediction is a wrapper project for Azure Cognitive Language Services Conversations client library. Its main functionality is to simplify and abstract the usage of the library, primarily focused on intention detection.

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.AI.IntentsPrediction.Azure from the package manager console:

PM> Install-Package Encamina.Enmarcha.AI.IntentsPrediction.Azure

.NET CLI:

Install .NET CLI. Next, install Encamina.Enmarcha.AI.IntentsPrediction.Azure from the .NET CLI:

dotnet add package Encamina.Enmarcha.AI.IntentsPrediction.Azure

How to use

First, you need to add the IntentPredictionConfigurations to your project configuration. You can achieve this by using any configuration provider. The following code is an example of how the settings should be set up using the appsettings.json file:

  {
    // ...
    "IntentPredictionConfigurations": {    
      "IntentPredictionOptions": [
        {
          "Name": "DefaultIntentPrediction", // Name of this configuration
          "EndpointUrl": "https://example.cognitiveservices.azure.com/", // Language Service endpoint's url
          "KeyCredential": "<API-KEY>", // Language Service (security) key
          "DeploymentSlot": "development", // Deployment type, allowing the 'test' and 'prod' ('production' works as well)
          "OrchestratorName": "<ORCHESTRATOR-NAME>", // The name of the Orchestrator to use as intent prediction service from Azure
          "EnableLogging": true, // A flag to indicate whether logging is enabled
          "EnableVerbose": false, // A flag to indicate whether verbose mode is enabled
          "ConfidenceThreshold": 0.65 // Minimum threshold score for answers, value ranges from 0 to 1
        }
      ]
    },
    // ...
  }

Next, in Program.cs or a similar entry point file in your project, add the following code.

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

// ...

// Or others configuration providers...
builder.Configuration.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true); 

builder.Services.AddDefaultCognitiveServiceProvider()
                .AddAzureIntentPredictionServices(builder.Configuration);

The extension methods AddDefaultCognitiveServiceProvider and AddAzureIntentPredictionServices manage the configuration to create instances of ICognitiveServiceProvider. With this, you can retrieve instances of IIntentPredictionService (whose implementation is IntentPredictionService). As seen in the appsettings.json, IntentPredictionConfigurations is an array, which allows you to generate different Intent Prediction configurations and retrieve information based on the Name parameter. You can inject ICognitiveServiceProvider through the constructor.

public class MyClass
{
    private readonly IIntentPredictionService intentPredictionService;

    public MyClass(ICognitiveServiceProvider cognitiveServiceProvider)
    {
        // The value "DefaultIntentPrediction" is the name specified in the JSON from the previous code.
        // This is just an example code; avoid hardcoding strings :)
        intentPredictionService = cognitiveServiceProvider.GetIntentPredictionService("DefaultIntentPrediction");
    }

    public async Task<string> GetIntentAsync(string userInput, CancellationToken cancellationToken)
    {
        var intentPredictionRequest = new IntentPredictionRequest()
        {
            IntentPredictionOptions = new IntentPredictionOptions() { Language = CultureInfo.CurrentCulture },
            Utterance = userInput
        };

        var intentPredictionResult = await intentPredictionService.PredictIntentAsync(intentPredictionRequest, cancellationToken);

        return intentPredictionResult.IntentPrediction?.TopIntentName;
    }
}
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.6-preview-07 0 4/29/2024
8.1.6-preview-06 38 4/26/2024
8.1.6-preview-05 39 4/24/2024
8.1.6-preview-04 59 4/22/2024
8.1.6-preview-03 61 4/22/2024
8.1.6-preview-02 62 4/17/2024
8.1.6-preview-01 111 4/15/2024
8.1.5 83 4/15/2024
8.1.5-preview-15 76 4/10/2024
8.1.5-preview-14 76 3/20/2024
8.1.5-preview-13 62 3/18/2024
8.1.5-preview-12 85 3/13/2024
8.1.5-preview-11 69 3/13/2024
8.1.5-preview-10 72 3/13/2024
8.1.5-preview-09 69 3/12/2024
8.1.5-preview-08 72 3/12/2024
8.1.5-preview-07 70 3/8/2024
8.1.5-preview-06 59 3/8/2024
8.1.5-preview-05 74 3/7/2024
8.1.5-preview-04 66 3/7/2024
8.1.5-preview-03 69 3/7/2024
8.1.5-preview-02 77 2/28/2024
8.1.5-preview-01 69 2/19/2024
8.1.4 120 2/15/2024
8.1.3 92 2/13/2024
8.1.3-preview-07 60 2/13/2024
8.1.3-preview-06 67 2/12/2024
8.1.3-preview-05 67 2/9/2024
8.1.3-preview-04 77 2/8/2024
8.1.3-preview-03 68 2/7/2024
8.1.3-preview-02 64 2/2/2024
8.1.3-preview-01 61 2/2/2024
8.1.2 87 2/1/2024
8.1.2-preview-9 73 1/22/2024
8.1.2-preview-8 61 1/19/2024
8.1.2-preview-7 60 1/19/2024
8.1.2-preview-6 61 1/19/2024
8.1.2-preview-5 62 1/19/2024
8.1.2-preview-4 63 1/19/2024
8.1.2-preview-3 61 1/18/2024
8.1.2-preview-2 62 1/18/2024
8.1.2-preview-16 62 1/31/2024
8.1.2-preview-15 65 1/31/2024
8.1.2-preview-14 59 1/25/2024
8.1.2-preview-13 62 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 63 1/22/2024
8.1.2-preview-1 62 1/18/2024
8.1.1 94 1/18/2024
8.1.0 82 1/18/2024
8.0.3 131 12/29/2023
8.0.1 116 12/14/2023
8.0.0 124 12/7/2023
6.0.4.3 107 12/29/2023
6.0.4.2 91 12/20/2023
6.0.4.1 159 12/19/2023
6.0.4 124 12/4/2023
6.0.3.20 110 11/27/2023
6.0.3.19 115 11/22/2023