Struct google_api_proto::google::cloud::dialogflow::cx::v3::StreamingDetectIntentRequest
source · pub struct StreamingDetectIntentRequest {
pub session: String,
pub query_params: Option<QueryParameters>,
pub query_input: Option<QueryInput>,
pub output_audio_config: Option<OutputAudioConfig>,
pub enable_partial_response: bool,
pub enable_debugging_info: bool,
}
Expand description
The top-level message sent by the client to the [Sessions.StreamingDetectIntent][google.cloud.dialogflow.cx.v3.Sessions.StreamingDetectIntent] method.
Multiple request messages should be sent in order:
-
The first message must contain [session][google.cloud.dialogflow.cx.v3.StreamingDetectIntentRequest.session], [query_input][google.cloud.dialogflow.cx.v3.StreamingDetectIntentRequest.query_input] plus optionally [query_params][google.cloud.dialogflow.cx.v3.StreamingDetectIntentRequest.query_params]. If the client wants to receive an audio response, it should also contain [output_audio_config][google.cloud.dialogflow.cx.v3.StreamingDetectIntentRequest.output_audio_config].
-
If [query_input][google.cloud.dialogflow.cx.v3.StreamingDetectIntentRequest.query_input] was set to [query_input.audio.config][google.cloud.dialogflow.cx.v3.AudioInput.config], all subsequent messages must contain [query_input.audio.audio][google.cloud.dialogflow.cx.v3.AudioInput.audio] to continue with Speech recognition. If you decide to rather detect an intent from text input after you already started Speech recognition, please send a message with [query_input.text][google.cloud.dialogflow.cx.v3.QueryInput.text].
However, note that:
- Dialogflow will bill you for the audio duration so far.
- Dialogflow discards all Speech recognition results in favor of the input text.
- Dialogflow will use the language code from the first message.
After you sent all input, you must half-close or abort the request stream.
Fields§
§session: String
The name of the session this query is sent to.
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>
or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>
.
If Environment ID
is not specified, we assume default ‘draft’
environment.
It’s up to the API caller to choose an appropriate Session ID
. It can be
a random number or some type of session identifiers (preferably hashed).
The length of the Session ID
must not exceed 36 characters.
Note: session must be set in the first request.
For more information, see the sessions guide.
Note: Always use agent versions for production traffic. See Versions and environments.
query_params: Option<QueryParameters>
The parameters of this query.
query_input: Option<QueryInput>
Required. The input specification.
output_audio_config: Option<OutputAudioConfig>
Instructs the speech synthesizer how to generate the output audio.
enable_partial_response: bool
Enable partial detect intent response. If this flag is not enabled,
response stream still contains only one final DetectIntentResponse
even
if some Fulfillment
s in the agent have been configured to return partial
responses.
enable_debugging_info: bool
If true, StreamingDetectIntentResponse.debugging_info
will get populated.
Trait Implementations§
source§impl Clone for StreamingDetectIntentRequest
impl Clone for StreamingDetectIntentRequest
source§fn clone(&self) -> StreamingDetectIntentRequest
fn clone(&self) -> StreamingDetectIntentRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StreamingDetectIntentRequest
impl Debug for StreamingDetectIntentRequest
source§impl Message for StreamingDetectIntentRequest
impl Message for StreamingDetectIntentRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for StreamingDetectIntentRequest
impl PartialEq for StreamingDetectIntentRequest
source§fn eq(&self, other: &StreamingDetectIntentRequest) -> bool
fn eq(&self, other: &StreamingDetectIntentRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StreamingDetectIntentRequest
Auto Trait Implementations§
impl !Freeze for StreamingDetectIntentRequest
impl RefUnwindSafe for StreamingDetectIntentRequest
impl Send for StreamingDetectIntentRequest
impl Sync for StreamingDetectIntentRequest
impl Unpin for StreamingDetectIntentRequest
impl UnwindSafe for StreamingDetectIntentRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request