我使用创建了一个 WhatsApp 聊天机器人chat api
,它工作正常,我收到消息,我也可以发送消息,但是如果用户发送消息我应该给自动回复,就像用户发送那样Hello
我应该给自动响应,如Hello ,how are you
。
就像Siri or google Assist
他们的反应一样。
我该怎么做这个挑战,请对此提出任何建议。
我尝试了什么:
我在 MYSQL 中创建了一个名为的表FAQ
,列如下id,question and Ans.
,
**id** **question** **Ans**
1 hi hi,how are you?
2 hello hi, how are you?
3 what is price of shoe 52000/-
4 may I know the price of shoe 52000/-
5 Is 8 size show availabel? Yes
在这里,如果用户发送消息,what is price of shoe
那么他将得到响应,52000/-
但如果用户发送消息,例如what is shoe price or hat is price of shoe? (added ? extra)
我无法发送响应,因为我非常匹配单词。
如何克服这个挑战,我可以使用任何图书馆php or javascript
,请建议。
我已经浏览了这个页面https://www.mysqltutorial.org/mysql-natural-language-search.aspx/
,但它发生了我所期望的。
谢谢桑迪普