Skip to content

Commit 90a551c

Browse files
Google APIscopybara-github
authored andcommitted
feat: added baseline model version used to generate the summary
feat: added the platform of the virtual agent response messages PiperOrigin-RevId: 555788605
1 parent 2228b85 commit 90a551c

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

google/cloud/dialogflow/v2/conversation.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,10 @@ message SuggestConversationSummaryResponse {
456456
string answer_record = 3 [(google.api.resource_reference) = {
457457
type: "dialogflow.googleapis.com/AnswerRecord"
458458
}];
459+
460+
// The baseline model version used to generate this summary. It is empty if
461+
// a baseline model was not used to generate this summary.
462+
string baseline_model_version = 5;
459463
}
460464

461465
// Generated summary.
@@ -537,6 +541,10 @@ message GenerateStatelessSummaryResponse {
537541
// section's name and the value is the section's content. There is no
538542
// specific format for the key or value.
539543
map<string, string> text_sections = 2;
544+
545+
// The baseline model version used to generate this summary. It is empty if
546+
// a baseline model was not used to generate this summary.
547+
string baseline_model_version = 4;
540548
}
541549

542550
// Generated summary.

google/cloud/dialogflow/v2/session.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,13 @@ message QueryParameters {
242242
// "Accept-Encoding", "If-Modified-Since", "If-None-Match", "X-Forwarded-For",
243243
// etc.
244244
map<string, string> webhook_headers = 14;
245+
246+
// The platform of the virtual agent response messages.
247+
//
248+
// If not empty, only emits messages from this platform in the response.
249+
// Valid values are the enum names of
250+
// [platform][google.cloud.dialogflow.v2.Intent.Message.platform].
251+
string platform = 18;
245252
}
246253

247254
// Represents the query input. It can contain either:

0 commit comments

Comments
 (0)