我有以下场景,根据城市名称或邮政编码获取美国位置详细信息
“找我西雅图附近的商店”或
“找我 07014 附近的商店”
我尝试了以下方法,但显然它不起作用。使用内置插槽而不定义多个意图来处理这种情况的最佳方法是什么
{
"intents": [
{
"slots": [
{
"name": "location",
"type": "AMAZON.US_CITY"
},
{
"name": "zip",
"type": "AMAZON.NUMBER"
}
],
"intent": "LocationInquiryIntent"
}
]
}
发声:
LocationInquiryIntent Get me the stores around {location|zip}