Add intents and entities from a conversation

I am looking for methods or tools to add either new intents and entities from a user response. I am looking for a method similar to “setIntent()”.

Example: (Bot): Hi!

(User): Hi! Can you set me an alarm for tomorrow at 7?

// Bot will not recognise that intent of “settings” and I want to add it to my domain intent list asking the user what intent is he talking about and in some way, try to adding it to my knowledge.

So, is an existing method to do that?

it’s hard to do it automatically, you can create a slot for it and and update the domain manually after you collected a bunch of conversations with new intents

Yes, could be a solution… But I was looking for a self-winding process.

As Rasa’s code is editable… Could I inplement a method to change the domain variables?

rasa is open source, you can implement any solution, you think will work

1 Like

Okey! I will try it! Thanks!