在生成引出时隙响应时遇到问题

问题描述 投票:3回答:1

我想为某个插槽创建一个dialogHook而不是更好地说一个验证类型的东西。如果插槽返回true,那么只有我会触发我的elicit插槽,否则它将像往常一样。请帮助我的方法。我是对于lex来说相对较新。

我试图在childExists上进行对话,但它不起作用。

def lambda_handler(event,context):
    os.environ['TZ']='America/New_York'
    time.tzset();
    logger.debug('event.bot.name={}'.format(event['bot']['name']))
    return dispatch(event);

def dispatch(intent_request):
    intent_name=intent_request['currentIntent']['name']
    if intent_name=='HotelReservation':
        return book_hotel(intent_request)

def book_hotel(intent_request):
    slots=intent_request['currentIntent']['slots']
    welcome=intent_request['currentIntent']['slots']['welcome']
    location=intent_request['currentIntent']['slots']['Location']
    fromDate=intent_request['currentIntent']['slots']['FromDate']
    adultCount=intent_request['currentIntent']['slots']['adultCount']
    nights=intent_request['currentIntent']['slots']['nights']
    childExists=intent_request['currentIntent']['slots']['childExists']
    source=intent_request['invocationSource']
    session_attributes={}
    if source=='DialogCodeHook'and childExists.lower()=='yes':
        session_attributes={}
        return elicit_slot (
        session_attributes,
            'HotelReservation',
            'childCount',
             'AMAZON.NUMBER',            
            {
            'contentType':'PlainText',
            'content':'Please enter number of Children'
            }
        )
    elif source=='DialogCodeHook':
        output_session_attributes = intent_request['sessionAttributes'] if intent_request['sessionAttributes'] is not None else {}
        return delegate(output_session_attributes, intent_request['currentIntent']['slots'])
    else:

        return close (
            session_attributes,
                'Fulfilled',{
                'contentType':'PlainText',
                'content':'Here is the temparature in'
                }
            )


#for fullfillment function
def close(session_attributes,fulfillment_state,message):
    response={
        'sessionAttributes':session_attributes,
        'dialogAction':{
            'type':'Close',
            'fulfillmentState':fulfillment_state,
            'message':message
        }
    }
    return response
#for elicit slot return
def elicit_slot(session_attributes, intent_name,slots,slot_to_elicit,message):
                        response= {
                         'sessionAttributes': session_attributes,
                         'dialogAction': {
                         'type': 'ElicitSlot',
                         'intentName': intent_name,
                         'slots': slots,
                         'slotToElicit': slot_to_elicit,
                         'message': message
                         }
                       }
    return response;
def delegate(session_attributes, slots):
    return {
        'sessionAttributes': session_attributes,
        'dialogAction': {
            'type': 'Delegate',
            'slots': slots
        }
    }

实际上我的插槽应该像往常一样运行但在childExists插槽之后我想发送一个elicit This is the image of the slots available的响应

python amazon-web-services aws-lambda amazon-lex
1个回答
3
投票

根据我的理解,你问用户Do you have any children并将响应存储在childExists插槽中,如果答案是肯定的,那么你想询问孩子的数量。

所以根据我的说法,你需要一个额外的插槽childCount来存储孩子的数量。由于此插槽并非总是需要,请不要在amazon lex控制台中标记此要求。

现在,您将在DialogCodeHook中查看此内容,并仅在childExists == 'yes'nd childCount中没有值时向用户询问。我们正在使用这些条件的组合是为了确保它不会无限期地运行。

def book_hotel(intent_request):
    slots = intent_request['currentIntent']['slots']
    welcome = slots['welcome']
    location = slots['Location']
    fromDate = slots['FromDate']
    adultCount = slots['adultCount']
    nights = slots['nights']
    childExists = slots['childExists']
    childCount = slots['childCount']
    source = intent_request['invocationSource']
    if source == 'DialogCodeHook':
        output_session_attributes = intent_request['sessionAttributes'] if intent_request['sessionAttributes'] is not None else {}
        if childExists.lower() == 'yes':
            if not childCount:
                return elicit_slot (
                    output_session_attributes,
                    'HotelReservation',
                    slots,
                    'childCount',            
                        {
                            'contentType':'PlainText',
                            'content':'Please enter number of Children'
                        }
                    )
        return delegate(output_session_attributes, intent_request['currentIntent']['slots'])

    if source == 'FulfillmentCodeHook':
        return close (
            output_session_attributes,
                'Fulfilled',{
                'contentType':'PlainText',
                'content':'Here is the temparature in'
                }
            )

希望能帮助到你。

© www.soinside.com 2019 - 2024. All rights reserved.