AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent 0.0.1-preview

This is a prerelease version of AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet tool install --global AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent --version 0.0.1-preview
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent --version 0.0.1-preview
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent&version=0.0.1-preview&prerelease
nuke :add-package AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent --version 0.0.1-preview

Azure AI Community GitHub

Intent Detection and Entity Recognition - AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent

The AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent plug-in is a powerful tool used to identify and recognize intents and entities within a given text.

Intent Detection

The plug-in allows you to determine the primary intention behind a piece of text. This is valuable in natural language understanding applications, such as chatbots or virtual assistants, where understanding user intentions is crucial.

Entity Recognition

In addition to intent detection, this plug-in excels at entity recognition. It can identify specific entities within the text, providing valuable information that can be used to extract meaningful data.

Whether you're building chatbots, conducting sentiment analysis, or performing any other text-based analysis, the AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent plug-in is a valuable asset for enhancing the understanding of textual data.

Example: Using AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent Plug-in

In this example, we demonstrate how to use the AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent plug-in for intent detection and entity recognition.

IDictionary<string, ISKFunction> conversationSummarySkill =
    kernel.ImportSkill(new IntentPlugIn(kernel));

SKContext intentInformation = await kernel.RunAsync("how is weather in chennai at 4PM",
    conversationSummarySkill["ExtractIntentAndEntity"]);

output:

{
  "text": "how is weather in chennai at 4PM",
  "intent": {
    "name": "Weather Inquiry",
    "score": 0.90
  },
  "entities": [
    {
      "entity": "Location",
      "type": "Location",
      "startPos": 15,
      "endPos": 22,
      "value": "Chennai"
    },
    {
      "entity": "Time",
      "type": "Time",
      "startPos": 25,
      "endPos": 29,
      "value": "4PM"
    }
  ]
}

Customizable Template Examples with the AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent Plug-in

With the AzureAI.Community.Microsoft.Semantic.Kernel.PlugIn.Intent plug-in, developers have the flexibility to provide their own 'N' of examples based on their specific needs.(The default template has been replaced.)

Code Example

You can pass custom examples to the plug-in as follows:

var template1 = new TemplateExamples
{
    Input = "I am planning a software development project for our new mobile app, scheduled to start next month.",
    Output = @"{
      ""text"": ""I am starting a new software development project for our mobile app next month"",
      ""intent"": {
        ""name"": ""Project Planning"",
        ""score"": 0.85
      },
      ""entities"": [
        {
          ""entity"": ""ProjectType"",
          ""type"": ""Development Project"",
          ""startPos"": 18,
          ""endPos"": 44,
          ""value"": ""software development project""
        },
        {
          ""entity"": ""ProjectName"",
          ""type"": ""Project Name"",
          ""startPos"": 49,
          ""endPos"": 61,
          ""value"": ""mobile app""
        },
        {
          ""entity"": ""StartDate"",
          ""type"": ""Start Date"",
          ""startPos"": 73,
          ""endPos"": 83,
          ""value"": ""Augest""
        }
      ]
    }"
};

Constructing the Object with Template Information

you need to provide the template information while constructing the object. Here's an example of how to do it:

Example Code

IDictionary<string, ISKFunction> conversationSummarySkill =
    kernel.ImportSkill(new IntentPlugIn(kernel, template1));

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.0.0-beta6 730 11/10/2023
0.0.2-preview 72 9/15/2023
0.0.1-preview 79 9/15/2023