Reputation: 85
I am new to chatbot application and RASA as well, can anyone please help me to understand how should i use RASA NLU with RASA CORE.
Upvotes: 2
Views: 1176
Reputation: 304
RASA NLU is the natural language understanding piece, which is used for taking examples of natural language and translating them into "intents." For example: "yes", "yeah", "yep" and "for sure" would all be translated into the "yes" intent.
RASA CORE on the other hand is the engine that processes the flow of conversation after the intent of the user has already been determined. RASA CORE can use other natural language translators as well, so while it pairs very nicely with RASA NLU they don't both have to be used together.
As an example if you were using both:
Hope this helps.
Upvotes: 14