Is it possible to use AMAZON LEX to build a chatbot which connects with database and Web service stored on client side?

前端 未结 2 1111
情书的邮戳
情书的邮戳 2021-01-24 04:52

Our organization wants to develop a \"LOST & FOUND System Application\" using chatbot integrated in a website.

Whenever the user starts the conver

2条回答
  •  时光说笑
    2021-01-24 05:10

    Yes its possible.

    You can send the requests to Lex from your website which will extract Intents and Entities.
    Once you get these, you can write backend code in any language of your choice and use any DB you want.
    In your use case, you might just want to use Lex. PostText will be main function you will be calling.

    You will need to create an intent in Lex which will have multiple slots LosingDate, LosingPlace or whatever you want, then it will be able to get all these information from the user and pass it to your web application.

提交回复
热议问题