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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -1044,6 +1044,11 @@ message StreamingAnalyzeContentRequest {
bool enable_partial_automated_agent_reply = 12
[(google.api.field_behavior) = OPTIONAL];

// Optional. If multiple utterances are detected in the audio stream, process
// them individually instead of stitching them together to form a single
// utterance.
bool output_multiple_utterances = 18 [(google.api.field_behavior) = OPTIONAL];

// if true, `StreamingAnalyzeContentResponse.debugging_info` will get
// populated.
bool enable_debugging_info = 19;
Expand Down
6 changes: 6 additions & 0 deletions packages/google-cloud-dialogflow/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions packages/google-cloud-dialogflow/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/google-cloud-dialogflow/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ function main(participant) {
* return partial responses.
*/
// const enablePartialAutomatedAgentReply = true
/**
* Optional. If multiple utterances are detected in the audio stream, process
* them individually instead of stitching them together to form a single
* utterance.
*/
// const outputMultipleUtterances = true
/**
* if true, `StreamingAnalyzeContentResponse.debugging_info` will get
* populated.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4206,7 +4206,7 @@
"segments": [
{
"start": 25,
"end": 168,
"end": 174,
"type": "FULL"
}
],
Expand Down Expand Up @@ -4275,6 +4275,10 @@
"name": "enable_partial_automated_agent_reply",
"type": "TYPE_BOOL"
},
{
"name": "output_multiple_utterances",
"type": "TYPE_BOOL"
},
{
"name": "enable_debugging_info",
"type": "TYPE_BOOL"
Expand Down