我一直在阅读 AWS Lex / Lambda 文档并查看示例。我看不到返回多行的方法。
我想创建一个意图,当用户键入“帮助”时,它会给我一个如下所示的输出。
Options:
Deploy new instance.
Undeploy instance.
List instances.
我试过这个:
def lambda_handler(event, context):
logger.debug('event.bot.name={}'.format(event['bot']['name']))
a = {
"dialogAction": {
"type": "Close",
"fulfillmentState": "Fulfilled",
"message": {
"contentType": "PlainText",
"content": "Options: \nDeploy instance.\nUndeploy instance."
}
}
}
return a