- Voice User Interface Projects
- Henry Lee
- 351字
- 2021-07-23 17:17:21
Using entities
In the First-President intent, you noticed that the intent had a problem answering the question who is the second president of USA? because the response was static, only replying with the first president, George Washington, and not the second president, John Adams, regardless of which ordinal positions were given by the user. Let's address this issue by dynamically creating the response using an entity:
- Let's start by creating an entity called president-number. In the first column, add the presidents' names, and in the second column, add the ordinals that match the president. The following screenshot shows the president-number entity:

- Now, create a new intent called Find President. Enter who is the first president of USA? in the User says textbox and then highlight the words first president and you will see that a drop-down pops out, where you can search and select the entity that you created, called president-number. The following screenshot shows the process of mapping the entity to the highlighted word:

By accessing the entity value within the response, you have the ability to create a dynamic response that can map the ordinal value to the president's name. $president-number.original refers to the user's ordinal input, first president, and $president-number refers to the ordinal value mapped to the name George Washington in the president-name entity. The response The $president-number.original of $geo-country is $president-number creates a proper answer to the user's question about who was the first or second President of the USA. When you test this in Google Assistant in Dialogflow, you will see that the proper response gets returned: The second president of USA is John Adams.
- Now, create a second question that does not have a geo-country, USA: Who is first president?, and create an equivalent response The $president-number.original is $president-number. The FaqChatBot agent will be smart enough to figure out that if the geo-country is omitted in the question, the agent will use the response that does not have $geo-country. The following screenshot shows the completed Find President intent:

- Node.js 10實戰
- Vue.js入門與商城開發實戰
- HTML5+CSS3基礎開發教程(第2版)
- Mastering Scientific Computing with R
- Web Application Development with MEAN
- JavaScript動態網頁開發詳解
- MySQL入門很輕松(微課超值版)
- Android移動開發案例教程:基于Android Studio開發環境
- LabVIEW虛擬儀器程序設計從入門到精通(第二版)
- C/C++數據結構與算法速學速用大辭典
- 智能手機APP UI設計與應用任務教程
- Web性能實戰
- MyBatis 3源碼深度解析
- JavaScript悟道
- Java 11 and 12:New Features