BotSharp/BotSharp.Core/Abstractions/INlpNer.cs
2018-08-11 13:17:15 -05:00

13 lines
234 B
C#

using BotSharp.Core.Engines.NERs;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Abstractions
{
public interface INlpNer
{
List<OntologyEnum> Ontologies { get; }
}
}