这是一个美国的CS作业代写,主要与AWS聊天机器人相关
This assignment has the following requirements:
Build and deploy the frontend of the application
1. Repurpose the following frontend starter application to
interface with your chatbot
1. https://github.com/ndrppnc/cloud-hw1-starter
1. Set the bucket up for website hosting
2. https://docs.aws.amazon.com/AmazonS3/latest/dev/Host
ingWebsiteOnS3Setup.html
1. Use API Gateway to setup your API
1. use the following API/Swagger specification for your
https://github.com/001000001/aics-columbia
s2018/blob/master/aics-swagger.yaml
Use http://editor.swagger.io/ to visualize this file
You can import the Swagger file into API
https://docs.aws.amazon.com/apigateway/lates
t/developerguide/api-gateway-import
api.html
Create a Lambda function (LF0) that performs the
chat operation
Use the request/response model (interfaces)
specified in the API specification above
2. For now, just implement a boilerplate response to all
messages:
ex. User says anything, Bot responds: “I’m still
under development. Please come back later.”
1. You will need to enable CORS on your API methods
https://docs.aws.amazon.com/apigateway/latest/dev
eloperguide/how-to-cors.html
2. API Gateway can generate an SDK for your API,
which you can use in your frontend. It will take care of
calling your API, as well as session signing the API
calls — an important security feature
https://docs.aws.amazon.com/apigateway/latest/dev
eloperguide/how-to-generate-sdk-javascript.html
Build a Dining Concierge chatbot using Amazon Lex.
1. 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
2. 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
1. Implement at least the following three intents:
GreetingIntent
ThankYouIntent
DiningSuggestionsIntent
2. The implementation of an intent entails its setup in
Amazon Lex as well as handling its response in the
Lambda function code hook.
Example: for the GreetingIntent you need to 1.
create the intent in Lex, 2. train and test the intent in
the Lex console, 3. implement the handler for the
GreetingIntent in the Lambda code hook, such that
when you receive a request for the GreetingIntent
you compose a response such as “Hi there, how can
I help?”
3. For the DiningSuggestionsIntent, you need to collect at
least the following pieces of information from the user,
through conversation:
Location
Cuisine
Dining Time
Number of people
Phone number
4. Based on the parameters collected from the user, push
the information collected from the user (location,
cuisine, etc.) to an SQS queue (Q1). More on SQS
queues here: https://aws.amazon.com/sqs/
Also confirm to the user that you received their
request and that you will notify them over SMS
once you have the list of restaurant suggestions.