Skip to content

Classifiers

Sophie Schulz edited this page Dec 3, 2019 · 1 revision

This chatbot framework offers the possibility to connect your chosen classifiers.

To connect your classifier you must implement the IClassifier interface. To ease the start with our framework we already implemented classifier connectors for Luis and Rasa.

How to add a new classifier?

Implement the Task Recognize(ITurnContext context, CancellationToken cancellationToken) and the ClassifierResult GetResult(bool cleanup = true) methods of the interface.

In Recognize the classifier gets the current user input and interprets it. With GetResults the classifier results can be retrieved.

Clone this wiki locally