BotSharp/BotSharp.Platform.Rasa/Models/AgentModel.cs

21 lines
535 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using BotSharp.Platform.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public class AgentModel : AgentBase
{
[JsonProperty("common_examples")]
public List<RasaIntentExpression> Intents { get; set; }
[JsonProperty("entity_synonyms")]
public List<RasaTrainingEntity> Entities { get; set; }
[JsonProperty("regex_features")]
public List<RasaTrainingRegex> Regex { get; set; }
}
}