BotSharp/BotSharp.Core/Abstractions/INlpNer.cs

13 lines
249 B
C#
Raw Normal View History

2018-08-11 18:17:15 +00:00
using BotSharp.Core.Engines.NERs;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Abstractions
{
public interface INlpNer : INlpPipeline
2018-08-11 18:17:15 +00:00
{
List<OntologyEnum> Ontologies { get; }
}
}