feat: updated v3 dialogflow client libraries with `dtmf_pattern` and … · googleapis/googleapis@59d5f2b · GitHub
Skip to content

Commit 59d5f2b

Browse files
Google APIscopybara-github
authored andcommitted
feat: updated v3 dialogflow client libraries with dtmf_pattern and trace_blocks
PiperOrigin-RevId: 888886398
1 parent f2cee57 commit 59d5f2b

4 files changed

Lines changed: 107 additions & 1 deletion

File tree

google/cloud/dialogflow/cx/v3/dialogflow_v3.yaml

Lines changed: 18 additions & 1 deletion

google/cloud/dialogflow/cx/v3/intent.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ message Intent {
281281
// Human readable description for better understanding an intent like its
282282
// scope, content, result etc. Maximum character limit: 140 characters.
283283
string description = 8;
284+
285+
// Optional. Matching DTMF pattern for the intent.
286+
string dtmf_pattern = 16 [(google.api.field_behavior) = OPTIONAL];
284287
}
285288

286289
// The request message for

google/cloud/dialogflow/cx/v3/session.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import "google/cloud/dialogflow/cx/v3/page.proto";
3030
import "google/cloud/dialogflow/cx/v3/response_message.proto";
3131
import "google/cloud/dialogflow/cx/v3/session_entity_type.proto";
3232
import "google/cloud/dialogflow/cx/v3/tool_call.proto";
33+
import "google/cloud/dialogflow/cx/v3/trace.proto";
3334
import "google/protobuf/duration.proto";
3435
import "google/protobuf/field_mask.proto";
3536
import "google/protobuf/struct.proto";
@@ -1134,6 +1135,13 @@ message QueryResult {
11341135
// Filled only when data stores are involved in serving the query.
11351136
DataStoreConnectionSignals data_store_connection_signals = 35
11361137
[(google.api.field_behavior) = OPTIONAL];
1138+
1139+
// Optional. Contains the sequence of trace blocks from the current
1140+
// conversation turn. Trace blocks are ordered chronologically and contain
1141+
// detailed traces of runtime behavior such as tool calls, LLM calls, flow and
1142+
// playbook invocations, agent utterances and user utterances.
1143+
repeated TraceBlock trace_blocks = 37
1144+
[(google.api.field_behavior) = OPTIONAL];
11371145
}
11381146

11391147
// Represents the natural language text to be processed.

google/cloud/dialogflow/cx/v3/trace.proto

Lines changed: 78 additions & 0 deletions

0 commit comments

Comments
 (0)