EntityType(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Each intent parameter has a type, called the entity type, which dictates exactly how data from an end-user expression is extracted.
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. For example, you could define a vegetable entity that can match the types of vegetables available for purchase with a grocery store agent.
For more information, see the Entity
guide <https://cloud.google.com/dialogflow/docs/entities-overview>
__.
Attributes | |
---|---|
Name | Description |
name |
str
The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType and EntityTypes.BatchUpdateEntityTypes methods. Format: projects/ .
|
display_name |
str
Required. The name of the entity type. |
kind |
google.cloud.dialogflow_v2.types.EntityType.Kind
Required. Indicates the kind of entity type. |
auto_expansion_mode |
google.cloud.dialogflow_v2.types.EntityType.AutoExpansionMode
Optional. Indicates whether the entity type can be automatically expanded. |
entities |
Sequence[google.cloud.dialogflow_v2.types.EntityType.Entity]
Optional. The collection of entity entries associated with the entity type. |
enable_fuzzy_extraction |
bool
Optional. Enables fuzzy entity extraction during classification. |
Classes
AutoExpansionMode
AutoExpansionMode(value)
Represents different entity type expansion modes. Automated expansion allows an agent to recognize values that have not been explicitly listed in the entity (for example, new kinds of shopping list items).
Entity
Entity(mapping=None, *, ignore_unknown_fields=False, **kwargs)
An entity entry for an associated entity type. .. attribute:: value
Required. The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions.
For KIND_MAP
entity types:
A reference value to be used in place of synonyms.
For
KIND_LIST
entity types:A string that can contain references to other entity types (with or without aliases).
:type: str
Kind
Kind(value)
Represents kinds of entities.