英国の郵便番号のカスタムスロット(CB1 1PTなど)を作成しようとしています。私は10月頃にこれを手に入れましたが、プロジェクトに戻ってきました。Amazonが多くのことを更新したようです。ここでAlexa Custom Slot追加の単語を取得する
は私の意図スキーマです:
{
"intents": [
{
"intent": "GetOutages",
"slots": [
{
"name": "postcode",
"type": "LIST_OF_POSTCODES"
}
]
},
{
"intent": "GetCoverage",
"slots": [
{
"name": "postcode",
"type": "LIST_OF_POSTCODES"
}
]
},
{
"intent": "AMAZON.StopIntent",
"slots": []
},
{
"intent": "AMAZON.CancelIntent",
"slots": []
}
]
}
カスタムスロットタイプ:
LIST_OF_POSTCODES S L six six D Y | C B one one P T | R G five four W L | G U one five one P B
いくつかのサンプル発話:
GetOutages outage info for {postcode}
GetOutages fault info for {postcode}
GetOutages information for {postcode}
GetOutages outage information for {postcode}
GetOutages fault information for {postcode}
私がしようとすると問題があり、スロットから値を取得するには、fuをピックアップしているようです文:
{
name:'GetOutages',
slots:{
postcode:{
name:'postcode',
value:'information for r g 54 w l'
}
}
}
誰にもアドバイスはありますか?本当に