- 2.43.0 (latest)
- 2.41.2
- 2.40.0
- 2.39.1
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.30.2
- 2.29.0
- 2.28.3
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.1
- 2.23.3
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.1
- 2.18.0
- 2.17.0
- 2.16.1
- 2.15.2
- 2.14.1
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.1
- 2.8.1
- 2.7.1
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.2
- 2.0.0
- 1.1.3
- 1.0.0
- 0.8.0
- 0.7.2
Context(mapping=None, *, ignore_unknown_fields=False, **kwargs)Dialogflow contexts are similar to natural language context. If a person says to you "they are orange", you need context in order to understand what "they" is referring to. Similarly, for Dialogflow to handle an end-user expression like that, it needs to be provided with context in order to correctly match an intent.
Using contexts, you can control the flow of a conversation. You can configure contexts for an intent by setting input and output contexts, which are identified by string names. When an intent is matched, any configured output contexts for that intent become active. While any contexts are active, Dialogflow is more likely to match intents that are configured with input contexts that correspond to the currently active contexts.
For more information about context, see the Contexts
guide <https://cloud.google.com/dialogflow/docs/contexts-overview>__.
| Attributes | |
|---|---|
| Name | Description | 
| name | strRequired. The unique identifier of the context. Format: projects/,
   orprojects/.
   
   TheContext IDis always converted to lowercase, may
   only contain characters ina-zA-Z0-9_-%and may be at
   most 250 bytes long.
   
   IfEnvironment IDis not specified, we assume default
   'draft' environment. IfUser IDis not specified, we
   assume default '-' user.
   
   The following context names are reserved for internal use by
   Dialogflow. You should not use these contexts or create
   contexts with these names:
   
   -__system_counters__-*_id_dialog_context-*_dialog_params_size | 
| lifespan_count | intOptional. The number of conversational query requests after which the context expires. The default is 0. If set to0, the context expires immediately. Contexts expire
   automatically after 20 minutes if there are no matching
   queries. | 
| parameters | google.protobuf.struct_pb2.StructOptional. The collection of parameters associated with this context. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs: - MapKey type: string - MapKey value: parameter name - MapValue type: If parameter's entity type is a composite entity then use map, otherwise, depending on the parameter value type, it could be one of string, number, boolean, null, list or map. - MapValue value: If parameter's entity type is a composite entity then use map from composite entity property names to property values, otherwise, use parameter value. |