2018-04-02 22:42:11 +00:00
|
|
|
|
using BotSharp.Core.Adapters.Rasa;
|
|
|
|
|
|
using Newtonsoft.Json;
|
2017-12-18 13:31:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-03-28 22:08:49 +00:00
|
|
|
|
namespace BotSharp.Core.Models
|
2017-12-18 13:31:15 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class RasaTrainingData
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("common_examples")]
|
2018-03-28 22:08:49 +00:00
|
|
|
|
public List<RasaIntentExpression> UserSays { get; set; }
|
2018-04-02 22:42:11 +00:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("entity_synonyms")]
|
|
|
|
|
|
public List<RasaTraningEntity> Entities { get; set; }
|
2017-12-18 13:31:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|