Created
March 2, 2022 23:09
-
-
Save sunnyy02/85e6d11edefe9b7e6f27950018225718 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Bot.Builder; | |
using Microsoft.Bot.Builder.AI.Luis; | |
using Newtonsoft.Json; | |
using System.Collections.Generic; | |
namespace AppointmentBot.CognitiveModels | |
{ | |
public partial class DoctorBooking : IRecognizerConvert | |
{ | |
public string Text; | |
public string AlteredText; | |
public enum Intent | |
{ | |
BookAppointment, | |
Cancel, | |
GetAvailableDoctors, | |
None | |
}; | |
public Dictionary<Intent, IntentScore> Intents; | |
public class _Entities | |
{ | |
// Built-in entities | |
public DateTimeSpec[] datetime; | |
// Lists | |
public string[][] Doctor; | |
// Instance | |
public class _Instance | |
{ | |
public InstanceData[] datetime; | |
public InstanceData[] Doctor; | |
public InstanceData[] AvailableDoctors; | |
} | |
[JsonProperty("$instance")] | |
public _Instance _instance; | |
} | |
public _Entities Entities; | |
[JsonExtensionData(ReadData = true, WriteData = true)] | |
public IDictionary<string, object> Properties { get; set; } | |
public void Convert(dynamic result) | |
{ | |
var app = JsonConvert.DeserializeObject<DoctorBooking>(JsonConvert.SerializeObject(result, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); | |
Text = app.Text; | |
AlteredText = app.AlteredText; | |
Intents = app.Intents; | |
Entities = app.Entities; | |
Properties = app.Properties; | |
} | |
public (Intent intent, double score) TopIntent() | |
{ | |
Intent maxIntent = Intent.None; | |
var max = 0.0; | |
foreach (var entry in Intents) | |
{ | |
if (entry.Value.Score > max) | |
{ | |
maxIntent = entry.Key; | |
max = entry.Value.Score.Value; | |
} | |
} | |
return (maxIntent, max); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment