Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use two sys.any in DialogFlow

I'm new to dialogflow. I'm trying to get "comments" and "notes" from the user. For these kind of parameters, I'm using "@sys.any" entity. without mixing the value of comments and notes, how to use two "@sys.any" entity in dialogflow. Thanks in advance.

like image 547
New_Coder Avatar asked Feb 22 '18 15:02

New_Coder


People also ask

What is the difference between Dialogflow and Dialogflow CX?

The Dialogflow Essentials (ES) Edition is a pay-as-you-go edition that provides the standard ES agent type. The Essentials Edition offers production-ready quotas and support from Google Cloud support. The Dialogflow Customer Experience (CX) Edition is a pay-as-you-go edition that provides the advanced CX agent type.

What is the use of entities in Dialogflow?

Dialogflow provides predefined system entities that can match many common types of data. For example, there are system entities for matching dates, times, colors, email addresses, and so on. You can also create your own custom entities for matching custom data.


1 Answers

You can assign a parameter name to an entity and thereby distinguish between entities of the same type. The parameter name is usually given behind the colon in a entity reference, i.e. you could have a @sys.any:comment and @sys.any:note in the same intent.

like image 190
gmolau Avatar answered Sep 26 '22 06:09

gmolau