Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .librarian/state.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ libraries:
tag_format: '{id}-v{version}'
- id: google-cloud-dialogflow
version: 2.45.0
last_generated_commit: 9a477cd3c26a704130e2a2fb44a40281d9312e4c
last_generated_commit: 7f62014053cd26b1acb7a1d0bf167104b64e3690
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The last_generated_commit hash being set here does not match the commit hash mentioned in the pull request description. The description states that this PR includes changes up to googleapis/googleapis@fa4dc54c... (full hash fa4dc54cf123a351f3215b384a7dc7c9f36005b7). To ensure correct tracking for future updates, this value should likely be updated to match the commit from the PR description.

    last_generated_commit: fa4dc54cf123a351f3215b384a7dc7c9f36005b7

apis:
- path: google/cloud/dialogflow/v2beta1
service_config: dialogflow_v2beta1.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,11 @@ class StreamingAnalyzeContentRequest(proto.Message):
only one final response even if some ``Fulfillment``\ s in
Dialogflow CX agent have been configured to return partial
responses.
output_multiple_utterances (bool):
Optional. If multiple utterances are detected
in the audio stream, process them individually
instead of stitching them together to form a
single utterance.
enable_debugging_info (bool):
if true, ``StreamingAnalyzeContentResponse.debugging_info``
will get populated.
Expand Down Expand Up @@ -1367,6 +1372,10 @@ class StreamingAnalyzeContentRequest(proto.Message):
proto.BOOL,
number=12,
)
output_multiple_utterances: bool = proto.Field(
proto.BOOL,
number=18,
)
enable_debugging_info: bool = proto.Field(
proto.BOOL,
number=19,
Expand Down
Loading