Class ResponseMessage (1.0.0)

ResponseMessage(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents a response message that can be returned by a conversational agent.

Response messages are also used for output audio synthesis. The approach is as follows:

  • If at least one OutputAudioText response is present, then all OutputAudioText responses are linearly concatenated, and the result is used for output audio synthesis.
  • If the OutputAudioText responses are a mixture of text and SSML, then the concatenated result is treated as SSML; otherwise, the result is treated as either text or SSML as appropriate. The agent designer should ideally use either text or SSML consistently throughout the bot design.
  • Otherwise, all Text responses are linearly concatenated, and the result is used for output audio synthesis.

This approach allows for more sophisticated user experience scenarios, where the text displayed to the user may differ from what is heard.

Attributes

NameDescription
text google.cloud.dialogflowcx_v3.types.ResponseMessage.Text
Returns a text response.
payload google.protobuf.struct_pb2.Struct
Returns a response containing a custom, platform-specific payload.
conversation_success google.cloud.dialogflowcx_v3.types.ResponseMessage.ConversationSuccess
Indicates that the conversation succeeded.
output_audio_text google.cloud.dialogflowcx_v3.types.ResponseMessage.OutputAudioText
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
live_agent_handoff google.cloud.dialogflowcx_v3.types.ResponseMessage.LiveAgentHandoff
Hands off conversation to a human agent.
end_interaction google.cloud.dialogflowcx_v3.types.ResponseMessage.EndInteraction
Output only. A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.
play_audio google.cloud.dialogflowcx_v3.types.ResponseMessage.PlayAudio
Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.
mixed_audio google.cloud.dialogflowcx_v3.types.ResponseMessage.MixedAudio
Output only. An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

Classes

ConversationSuccess

ConversationSuccess(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.

Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.

You may set this, for example:

  • In the entry_fulfillment of a Page if entering the page indicates that the conversation succeeded.
  • In a webhook response when you determine that you handled the customer issue.

EndInteraction

EndInteraction(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Indicates that interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only and not supposed to be defined by the user.

LiveAgentHandoff

LiveAgentHandoff(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Indicates that the conversation should be handed off to a live agent.

Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.

You may set this, for example:

  • In the entry_fulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
  • In a webhook response when you determine that the customer issue can only be handled by a human.

MixedAudio

MixedAudio(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents an audio message that is composed of both segments synthesized from the Dialogflow agent prompts and ones hosted externally at the specified URIs. The external URIs are specified via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

OutputAudioText

OutputAudioText(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

PlayAudio

PlayAudio(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Specifies an audio clip to be played by the client as part of the response.

Text

Text(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The text response message. .. attribute:: text

Required. A collection of text responses.

:type: Sequence[str]