BotSharp/BotSharp.Platform.Rasa/Models/AgentModel.cs
2018-11-19 09:20:59 -06:00

21 lines
535 B
C#

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; }
}
}