How to call another intent without prompting to user in Lex?

柔情痞子 提交于 2019-12-02 04:09:16

问题


Is it possible to trigger intent-B from the lambda function of intent-A without prompting to user?
Suppose user typed something and an intent-A is fired, after some processing I want to trigger some other intent i.e intent-B.
User can also directly trigger intent-B through specific utterances. Any help is appreciated.


回答1:


I ended up doing below to call intent-B from intent-A without prompting anything to user:

  • give access to invoke lambda functions to your calling lambda function i.e lambda function of intent-A
  • get the name of backend lambda function of intent-B
  • call that lambda function with all the inputs using boto3
  • response will be in 'Payload' key of response object
  • get the response using read() method
  • get actual output in ['dialogAction']['message']['content']
  • return using default close() method

import boto3

client = boto3.client('lambda')
data = {'messageVersion': '1.0', 'invocationSource': 'FulfillmentCodeHook', 'userId': '###', 
        'sessionAttributes': {}, 'requestAttributes': None, 
        'bot': {'name': '###', 'alias': '$LATEST', 'version': '$LATEST'}, 
        'outputDialogMode': 'Text', 
        'currentIntent': {'name': '###', 'slots': {'###': '###'}, 
        'slotDetails': {'###': {'resolutions': [], 'originalValue': '###'}}, 
        'confirmationStatus': 'None'}, 
        'inputTranscript': '###'}
response = client.invoke(
    FunctionName='{intent-B lambda function}',
    InvocationType='RequestResponse',
    Payload=json.dumps(data)
)
output = json.loads(response['Payload'].read())['dialogAction']['message']['content']



回答2:


Yes it is possible .From the lambda of Intent-A , you can write the below code :

        intentRequest.currentIntent.name='Intent-B';
        var param1={
                slot-B:null
            };
            intentRequest.currentIntent.slots=param1;
          callback(elicitSlot(outputSessionAttributes, 'Intent-B', intentRequest.currentIntent.slots, 'slot-B'));

Below is the function for elicitSlot

function elicitSlot(sessionAttributes, intentName, slots, slotToElicit, message) {    
return {
    sessionAttributes,
    dialogAction: {
        type: 'ElicitSlot',
        intentName,
        slots,
        slotToElicit,
        message,
    },
};

}



来源:https://stackoverflow.com/questions/47587832/how-to-call-another-intent-without-prompting-to-user-in-lex

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!