Dining-Concierge-Chatbot
This application is a serverless, microservice-driven web application built entirely with Amazon Web Services. This chatbot's main function is to make restaurant recommendations to its customers based on their preferences expressed through conversations.
Tech Stack :

Introduction
This application is a serverless, microservice-driven web application built entirely with Amazon Web Services. This chatbot's main function is to make restaurant recommendations to its customers based on their preferences expressed through conversations.
We have support for Yelp-API with suggestions and real time chat.
Services Used
- Amazon S3 - To host the frontend
- Amazon Lex - To create the bot
- API Gateway - To set up the API
- Amazon SQS - to store user requests on a first-come bases
- OpenSearch Service - To quickly get restaurant ids based on the user preferences of cuisine collected from SQS
- DynamoDB - To store the restaurant data collected using Yelp API
- Amazon SNS - to send restaurant suggestions to users through SMS
- Lambda - To send data from the frontend to API and API to Lex, validation, collecting restaurant data, sending suggestions using SNS.
- Yelp API - To get suggestions for food
Steps
-
Build and deploy the frontend of the application<br>a. Implement a chat user interface, where the user can write messages and get responses back. You can use open source libraries and frameworks that give you this UI and UX out of the box.<br>b. Host your frontend in an AWS S3 bucket i. Set the bucket up for website hosting ii. https://docs.aws.amazon.com/AmazonS3/latest/dev/HostingWebsiteOnS3Setup.html
-
Build the API for the applicationa. Use API Gateway to setup your API<br>b. Notes<br>
-
Build a Dining Concierge chatbot using Amazon Lex.a. Create a new bot using the Amazon Lex service. Read up the documentation on all things Lex, for more information: https://docs.aws.amazon.com/lex/latest/dg/getting-started.html<br>b. Create a Lambda function (LF1) and use it as a code hook for Lex, which essentially entails the invocation of your Lambda before Lex responds to any of your requests -- this gives you the chance to manipulate and validate parameters as well as format the bot’s responses. More documentation on Lambda code hooks at the following link: https://docs.aws.amazon.com/lex/latest/dg/using-lambda.html<br>c. Bot Requirements:
-
Integrate the Lex chatbot into your chat APIa. Use the AWS SDK to call your Lex chatbot from the API Lambda (LF0).b. When the API receives a request, you should 1. extract the text message from the API request, 2. send it to your Lex chatbot, 3. wait for the response, 4. send back the response from Lex as the API response.
-
Use the Yelp API to collect 5,000+ random restaurants from Manhattan.a. Use the following tools:
-
Create an OpenSearch instance using the AWS OpenSearch Service.
- Create an OpenSearch index called “restaurants”
- Create an OpenSearch type under the index “restaurants” called “Restaurant”
- Store partial information for each restaurant scraped in OpenSearch under the “restaurants” index, where each entry has a “Restaurant” data type. This data type will be of composite type stored as JSON in OpenSearch. https://docs.aws.amazon.com/opensearch-service/
- You only need to store RestaurantID and Cuisine for each restaurant
-
Build a suggestions module, that is decoupled from the Lex chatbot.
-
Create a new Lambda function (LF2) that acts as a queue worker. Whenever it is invoked it<br>
- pulls a message from the SQS queue (Q1), <br>
- gets a random restaurant recommendation for the cuisine collected through conversation from OpenSearch and DynamoDB,
- formats them and<br>
- sends them over text message to the phone number included in the SQS message, using SNS (https://docs.aws.amazon.com/sns/latest/dg/SMSMessages.html).<br> i. Use the DynamoDB table “yelp-restaurants” (which you created from Step 1) to fetch more information about the restaurants (restaurant name, address, etc.), since the restaurants stored in OpenSearch will have only a small subset of fields from each restaurant.<br> ii. Modify the rest of the LF2 function if necessary to send the user text/email.
-
Set up a CloudWatch event trigger that runs every minute and invokes the Lambda function as a result: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/RunLabdaSchedule.html. This automates the queue worker Lambda to poll and process suggestion requests on its own.
-