Identifying the name of a person, place, and company using LUIS
Now we will create a custom LUIS app to return all the identified Intents that are created and trained. For example, if you say Hi John, am going to New York tonight, the LUIS app will return natural speech and intent processing to know the name, location, and other things, such as John as name and New York as place:
- After logging into LUIS in
luis.ai
, create an app for yourIntentProcessing
. To do that, click onNew App
and selectNew Application
:

- Enter the application's name, the usage as
Bot
, and select the category. Finally, click on theAdd App
button:

- After successful creation of the app, open it and click on the
+
icon of theIntents
section from the left-hand side of the menu:

- Enter the name for your Intent and click on the
Save
button:

- Now add a custom entity from the left-hand side menu, click on the
+
icon of the Entity, and enter the name:

- Repeat the preceding step for Entity
Company
:

- Now add an Entity. From the left-hand...