背景
私はAlexaスキルを書いており、ユーザーからの情報を得ようとしています。例えばAlexa Skillに対する一言回答
次の会話:
Alexa: What month were you born at?
User: April
Alexa: Good. And what was your favorite movie?
User: April
問題
次の発話を考える:
GetMonthIntent {month}
GetMovieIntent {movie}
ユーザーが二度目のApril
に答えたら、GetMonthIntent
がトリガされる可能性があります。正しい方法にはどのような質問
GetMonthIntent Month {month}
GetMovieIntent Movie {movie}