Questions tagged [aws-lex]

Amazon Lex is a service for building conversational interfaces into any application using voice and text. It is used to build conversation/chat bots. Use this tag for questions related to Amazon-Lex such as questions on chat bots built using Amazon-lex.

Amazon Lex is a service for building conversational interfaces into any application using voice and text. It is used to build conversation/chat bots. Use this tag for questions related to Amazon-Lex such as questions on chat bots built using Amazon-lex.

118 questions
0
votes
0 answers

AWS Lex Error "Error: Something went wrong, please try again, if your problem persists then please contact the bot's developer. "

I saw the same error as one mentioned in this post aws forum post Error: Something went wrong, please try again, if your problem persists then please contact the bot's developer. Error occurred at: 2019-10-09T15:58:29.153Z[UTC]. The messenger I was…
user1655072
  • 572
  • 2
  • 10
  • 20
0
votes
1 answer

Uploading the file / documents via Amazon lex

I am able to successfully 1) Create the chat bot using Amazon lex with custom intend and I tested in test bot 2) I used the amazon javascript sdk : aws-sdk-2.41.0.min.js to access the amazon lex bot from my web application As per the…
Harry
  • 3,072
  • 6
  • 43
  • 100
0
votes
2 answers

How to use Amazon lex bot from the external web UI

I have set up the amazon lex bot in AWS and I am able to test this successfully in the Test bot section. I started exploring accessing the amazon lex bot from the external web ui (my local application) and I found the tool called amazon aws lex web…
Harry
  • 3,072
  • 6
  • 43
  • 100
0
votes
1 answer

Using Amazon Lex's inputTranscript to allow for an wide open slot. There is only one slot

Similar to the question that was asked previously amazon lex transcript wide open slot. This dealing with the solution to that question and the comment under the solution. The intent I want to create has only one slot and I just want to respond…
user1655072
  • 572
  • 2
  • 10
  • 20
0
votes
0 answers

Want to redirect user of amazon lex to a new page (using lambda)

I'm programming a chatbot with amazon lex and i want to redirect the user to a new page. (I'm using python with lambda function) I've tried with webbrowser, it works when i tried in local but when i put the function in aws lambda it doesn't work…
0
votes
0 answers

NodeJS/Lambda/Lex/Axios - How to make a synchronous call for slot(s)

I've done my research in regards with making a synchronous calls and it is not recommended as it is blocking the thread. But in my case, it's different. I am making a simple weather checker amazon lex bot. And I have two slots, {city} and {date}.…
SMPLYJR
  • 854
  • 1
  • 11
  • 23
0
votes
1 answer

Receiving email address through Amazon Connect/Lex?

I'm currently trying to set up a bot to collect email address via Connect/Lex using voice. I know this is near impossible to do without spelling it out character by character. I've tried setting custom slots, using AMAZON.EmailAddress, etc, but all…
Kenny
  • 33
  • 4
0
votes
1 answer

AWS Lex best practice for lambda functions, single lambda or one per intent

I am setting up a chatbot in AWS Lex. The inputs for Lex are handled by a Lambda function (Main). Depending on the intent, an API may need to be called. I was wondering whether it would be best practice to simply return the intent and slots from…
0
votes
1 answer

aws lambda returning response card throwing a null fulfillmentState error in Amazon Lex?

I have written this function which returns fine when it is just returning as a String. I have followed the syntax for the response card very closely and it passes my test case in lambda. However when it's called through Lex it throws an error which…
Synikk
  • 31
  • 1
  • 2
0
votes
3 answers

AWS Lex - How to share values from one intent to other intents

I am fairly new when it comes to using Lambda with Lex and scripting in general. In an intent, I am asking users for their first name, last name, and organization. I am wondering if there a way I can share this information across other intents in…
Bryan
  • 1
  • 1
0
votes
1 answer

how to add a line break in node-js?

I am trying to add a line break in between two strings in node js inside a lambda function. I have tried using '\n' , '\r\n' and also tried importing os and then using os.EOL statement, but none of these worked. ------------------------Using…
Ashwin96
  • 31
  • 6
0
votes
1 answer

Ho to fix 'Connection aborted.', OSError(97, 'Address family not supported by protocol' in aws-lambda?

I am creating a new AWS bot that has to connect to an application installed on my local machine in Apache Tomcat Server. I am able to make a request from postman using the URL 'https://localhost:8080/iii'. But if i give the same URL in my lambda…
0
votes
1 answer

How to setup, different stage and production AWS BOT

I have AWS Bot with some intents and Lamda function. I need a seperate platform for stage and production release. When I change any intent or lamda function it can't affect in production BOT Build,only affect in stage build. How it possible? How can…
0
votes
1 answer

Play a message to the user after confirmation prompt. like "Please wait. While we are fetching your details"

I have set up a Lex bot which provides the order status to the user. User invoked the intent with a specific utterance. Then lex bot asked the information as requested in the slot specified. Then confirmation prompt is invoked "Are you sure you want…
Sanjay
  • 13
  • 5
0
votes
1 answer

setting aws-lex request attributes with aws-sdk-ios

Is there a way to set request attributes with iOS SDK? I am using this on android: textInForAudioOut(java.lang.String text, java.util.Map sessionAttributes, java.util.Map
Ivan
  • 11
  • 2