Skip to content

Commit 2ec8242

Browse files
Google APIscopybara-github
authored andcommitted
feat: filter is used to filter conversations used for issue model training
feat: update_time is used to indicate when the phrase matcher was updated PiperOrigin-RevId: 397164390
1 parent cce61a9 commit 2ec8242

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

google/cloud/contactcenterinsights/v1/resources.proto

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,11 +567,17 @@ message IssueModel {
567567

568568
// Configs for the input data used to create the issue model.
569569
message InputDataConfig {
570-
// Required. Medium of conversations used in training data.
571-
Conversation.Medium medium = 1 [(google.api.field_behavior) = REQUIRED];
570+
// Medium of conversations used in training data. This field is being
571+
// deprecated. To specify the medium to be used in training a new issue
572+
// model, set the `medium` field on `filter`.
573+
Conversation.Medium medium = 1 [deprecated = true];
572574

573575
// Output only. Number of conversations used in training. Output only.
574576
int64 training_conversations_count = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
577+
578+
// A filter to reduce the conversations used for training the model to a
579+
// specific subset.
580+
string filter = 3;
575581
}
576582

577583
// State of the model.
@@ -730,6 +736,9 @@ message PhraseMatcher {
730736
// against. If the role is ROLE_UNSPECIFIED it will be matched against any
731737
// utterances in the transcript.
732738
ConversationParticipant.Role role_match = 10;
739+
740+
// Output only. The most recent time at which the phrase matcher was updated.
741+
google.protobuf.Timestamp update_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
733742
}
734743

735744
// A message representing a rule in the phrase matcher.

0 commit comments

Comments
 (0)