AI Assisted Dialog enteties

Hello, I’m using the AI ​​Assisted Dialog and I want to use the entities that were defined in it. The documentation says to use this syntax - {{context.ai_assisted_dialog .passengers_info.entities.passenger_name}}. My bot is named ai_complaint and has 2 entities “complaint” and “name”. I’m trying to fetch those two enteties with {{context.ai_complaint.entities.complaint}} and {{context.ai_complaint.entities.name}}, but it’s not working. Does anyone know what the problem is?

Hello Joel,
From the given statement we suspect the context path was incorrect. You can remove the bot name from the given path. You can try using the placeholders {{context.entities.name}} and {{context.entities.complaint}} to extract the values of the corresponding entities.

Please let us know if you can see any further challenges.