859 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
103
views
AWS Lex descriptive bot builder
I am trying to create an AWS Lex bot with the AI Descriptive bot builder. No matter what I do I get: Please ensure your botLocale has Descriptive bot builder enabled with a valid foundation model, ...
0
votes
0
answers
37
views
session timeout not working in lex chatbot
There is a lex chatbot created in AWS.Session timeout is not getting detected in lex chatbot despite configuring the session timeout to 1 minute.
Even lambda function created on the code hook intent ...
0
votes
0
answers
50
views
AWSLexV2 Terraform Apply having error applying different versions
I've created a module for many AWS LexV2 bots I've created but I want to make multiple versions of it and not just 'Draft'.
For context, this is my module logic (included the core of it):
locals {
...
0
votes
1
answer
116
views
How to build an AWS chatbot using my resume as training material?
If I go to ChatGPT and paste my resume, the bot can then answer questions based on it, generating information when needed. I'm trying to build this myself using AWS Lex but I'm not understanding the ...
0
votes
0
answers
236
views
Amazon Lex Access to Bedrock Fails
I am using aws lex StartConversation API with the built-in intent called 'BedrockAgentIntent' so the bot uses a created bedrock agent to answer user requests, it is working from the console, but when ...
0
votes
0
answers
59
views
AMAZON.QnAIntent integration to existing lex bot through cli
aws lexv2-models create-intent \
--bot-id BH4IPQZY \
--bot-version DRAFT \
--locale-id en_US \
--intent-name messageBedrock \
--description "QnA intent for knowledge base integration&...
0
votes
0
answers
24
views
aws lex bot with labda function to handle intent
service: claude-lex-bedrock-bot
provider:
name: aws
runtime: nodejs22.x
region: eu-west-2
environment:
KNOWLEDGE_BASE_ID: ${env:KNOWLEDGE_BASE_ID, 'M86AHPZ6CL'}
iam:
role:
...
0
votes
1
answer
86
views
aws lex bot through cloud formation and lambda
My use case is to create a bot using the YAML file. When a user asks questions related to my knowledge base, I need the bot to provide answers. I tried using the QnA intent in the AWS console, but it’...
0
votes
0
answers
34
views
aws lex bot and lambda function through cloudformation template
service: claude-lex-qa-bot-nodejs
provider:
name: aws
runtime: nodejs18.x
region: eu-west-2
environment:
KNOWLEDGE_BASE_ID: 7098R9J1111
iamRoleStatements:
- Effect: Allow
Action:
- bedrock:InvokeModel
...
0
votes
3
answers
84
views
aws QnA intent cloudformation template not working
I want to create a lex bot with serverless.yaml and I want to use the aws bedrocks builtin intent qnaintent. I am able to create the bot with intents from the serverless.yaml but I am unable to add ...
0
votes
0
answers
56
views
How to generate button in Lex V2 Bot for dynamic response from API
I am creating a Lex V2 bot and need buttons for user selection. The button has to dynamically get created as per the response from API.
Usecase: The bedrock API *AgentsforBedrockRuntime.Client....
0
votes
0
answers
76
views
Amazon Connect barge in user allow interrupt for intent level
I am using Get Customer Input widget to get user input with Amazon lex v2 bot fulfilment with lambda.
I want x-amz-lex:allow-interrupt at intent level. When lex v2 lambda eliciting Intent(diagloAction ...
0
votes
0
answers
16
views
From List of Utterence ,Lex should suggest intent and slot
I have a list of utterances and I would like to see what lex comes up with for intents /slots .How can I achieve that in AWS Lex ? Should I use Amazon Bedrock and if you have any example ?
0
votes
0
answers
37
views
Re-prompting the user for input after a certain time
I am building a bot in amazon lex, which will be used to collect app ratings from the user. To collect these ratings I'm using Elicit_slot so the bot will prompt the user for rating. Problem is if ...
0
votes
0
answers
24
views
AWS Lex Lambda Response
I have a lambda function connected to AWS Lex that calls an API key and gives the user a response with different articles, but since Lex's responce is in plaintext I am having issues getting each new ...