intent has no intent !!!
# 🤝help
n
Hey guy's I've come back this bot and trying to direct user to either a Menu, Wine List, Or map Intents don't work, Ive tried an expression too. The one time it picked up an intent it tookl the user to the wrong card!! Menu went to Map card see. https://www.awesomescreenshot.com/video/26139944?key=d410443238a683ea276f29a542c9ceba
g
I don't like intent cards because from what I've seen they depend on the context of the conversation
instead you can use expression card like workflow.yourVar === 'wordX' || workflow.yourVar === 'wordY'
etc
But you need to write the word exactly the same ( test isn't equal to Test for example)
c
Hey there @nice-airplane-37559 , couple of things to try: - When you ask it for "Menu List" it doesn't know the difference between "Menu" and "Menu List". Try rephrasing the intents like: "
Looking for Menu
Looking for Wine
- Instead of using the intent use the
AI-transition
like I did below: - Alternatively you can use an AI task node to interpret the answer to the userQuestion by capturing the {{event.preview}} and parsing it to one of your desired flows e.g. : "Hi, Im looking for the wine" -> AI NODE -> set
workflow.intent
to "wine". etc. https://cdn.discordapp.com/attachments/1221967309858541689/1222112896541261867/brave_QrypImJ446.png?ex=66150854&is=66029354&hm=257dd87986daa97c22d7560fe95024ee46350c3b2fde2934b0e9251105934187&
2 Views