BotSharp/BotSharp.Core/Engines/NERs/WitAiEntityRecognizer.cs
2018-08-11 13:17:15 -05:00

23 lines
484 B
C#

using BotSharp.Core.Abstractions;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.NERs
{
public class WitAiEntityRecognizer : INlpNer
{
public List<OntologyEnum> Ontologies
{
get
{
return new List<OntologyEnum>
{
OntologyEnum.DateTime,
OntologyEnum.Location
};
}
}
}
}