【发布时间】:2018-10-20 20:07:44
【问题描述】:
我正在尝试迁移我的操作表单 Dialogflow,最重要的是意图架构。但是上传.json文件后,抛出错误Intent name must not be empty. Error code: MissingIntentName。这是 Intent schema.json
{
"intents": [
{
"intent": "SelectedSubjectsYes"
},
{
"intent": "UserIsOk",
"slots": [
{
"name": "okslot",
"type": "OK"
}
]
},
{
"intent": "SelectedSubjectsNo"
},
{
"intent": "UserIsNotOk",
"slots": [
{
"name": "not_okslot",
"type": "NOT_OK"
}
]
},
{
"intent": "DefaultWelcomeIntent"
},
{
"intent": "HowAreYou?"
},
{
"intent": "SelectedSubjects",
"slots": [
{
"name": "subjectslot",
"type": "SUBJECT"
}
]
}
]
}
我从来没有编辑过它,为什么会出现错误?提前致谢。
【问题讨论】:
标签: dialogflow-es alexa alexa-skills-kit alexa-skill