0

In my app, user has to tell the current city. My intent request is

{
  "slots": [
    {
      "name": "cityName",
      "type": "AMAZON.US_CITY"
    }
  ],
  "intent": "cityIntent"
}

And my utterances are

cityIntent my city is {cityName} 
cityIntent my favorite city is {cityName} 
cityIntent {cityName} 
cityIntent change city to {cityName}

now when I am saying Alexa change city to Mumbai or My city is Miami, it is working fine but when alexa ask for the city name and I am replying with only city name like Mumbai Or Miami, it won't work. It calls for stopIntent

Rahul Gupta
  • 972
  • 11
  • 29

1 Answers1

0

Amazon recently created a new slot type AMAZON.SearchQuery which would perfectly suit your problem.