Can luis recognize city and country depending on build in geography intend?

519 Views Asked by At

Currently training my LUIS application. LUIS is connected with bing. LUIS has a lot of build in intents.

So, my question is:

Does the build in geography intent recognize city or country is my input and get the entity about?

For example:

forecast about georgia -- this is country

forecast about munchen -- this is city

1

There are 1 best solutions below

0
On

Yes, you can differentiate between cities, countries, or points of interest using the entity type:

{ "type": "builtin.geography.city", "entity": "paris" }
{ "type": "builtin.geography.country", "entity": "australia" }
{ "type": "builtin.geography.pointOfInterest", "entity": "sahara desert" }