By pass NLU to give predetermined Intent

Hello all,

How to by pass NLU and give a fixed intent. Can you share any example code for this?

Thanks!

You should be able to send the name of the intent directly to the core and it’ll execute. Let’s say your intent is name “greet”, if you send /greet to your core, it should execute it without using the NLU.

If you want to execute an action instead, you can use the end point /conversations/{sender_id}/execute (HTTP API)

Okay. I’ll try. Thanks for the reply.