Skip to content

Commit c8eccda

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: 556882279
1 parent 29b8ec7 commit c8eccda

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

google/cloud/dialogflow/v2beta1/conversation.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,10 @@ message SuggestConversationSummaryResponse {
516516
string answer_record = 3 [(google.api.resource_reference) = {
517517
type: "dialogflow.googleapis.com/AnswerRecord"
518518
}];
519+
520+
// The baseline model version used to generate this summary. It is empty if
521+
// a baseline model was not used to generate this summary.
522+
string baseline_model_version = 5;
519523
}
520524

521525
// Generated summary.
@@ -597,6 +601,10 @@ message GenerateStatelessSummaryResponse {
597601
// section's name and the value is the section's content. There is no
598602
// specific format for the key or value.
599603
map<string, string> text_sections = 2;
604+
605+
// The baseline model version used to generate this summary. It is empty if
606+
// a baseline model was not used to generate this summary.
607+
string baseline_model_version = 4;
600608
}
601609

602610
// Generated summary.

google/cloud/dialogflow/v2beta1/session.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,13 @@ message QueryParameters {
271271
// "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
272272
// "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
273273
map<string, string> webhook_headers = 14;
274+
275+
// The platform of the virtual agent response messages.
276+
//
277+
// If not empty, only emits messages from this platform in the response.
278+
// Valid values are the enum names of
279+
// [platform][google.cloud.dialogflow.v2beta1.Intent.Message.platform].
280+
string platform = 18;
274281
}
275282

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

0 commit comments

Comments
 (0)