BotSharp/BotSharp.Platform.Models/AiResponse/AIResponse.cs

26 lines
533 B
C#
Raw Normal View History

2018-10-25 04:54:26 +00:00
using BotSharp.Platform.Models.Entities;
using System;
2018-10-02 02:49:01 +00:00
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.AiResponse
{
public class AiResponse
{
2018-10-25 04:54:26 +00:00
public AiResponse()
{
Entities = new List<NlpEntity>();
}
public string ResolvedQuery { get; set; }
2018-10-02 02:49:01 +00:00
public string Intent { get; set; }
public string Source { get; set; }
public double Score { get; set; }
2018-10-25 04:54:26 +00:00
public List<NlpEntity> Entities { get; set; }
2018-10-02 02:49:01 +00:00
}
}