
Comprehensive Detailed Explanation
Looking at the exhibit:
The GetWeather dialog is set up with a trigger phrase:
“what is the weather like in {city=Seattle}”
Here, city is an entity (ex: Seattle, New York, London, etc.).
1. User asks “what is the weather like in New York”
Since “New York” matches the city entity, the bot will correctly identify New York as a city entity.
It will not confuse it with a state entity, nor default to Seattle, because entity recognition extracts the correct city name dynamically.
Correct choice: Identify New York as a city entity
2. GetWeather dialog trigger
In Bot Framework Composer, the trigger type determines how the dialog is activated.
Since GetWeather is linked to the intent “GetWeather” from the Language Understanding model (LUIS/CLU), the trigger is Language Understanding Intent recognized.
This means whenever the user utterance maps to the GetWeather intent, the dialog starts.
Correct choice: Language Understanding Intent recognized
Correct Answer:
Identify New York as a city entity
Language Understanding Intent recognized
Microsoft References
Bot Framework Composer – Triggers
Entities in Conversational Language Understanding
Submit