Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
feat: filter is used to filter conversations used for issue model tra…
Browse files Browse the repository at this point in the history
…ining feat: update_time is used to indicate when the phrase matcher was updated (#91)
  • Loading branch information
gcf-owl-bot[bot] committed Sep 17, 2021
1 parent 145a112 commit 2ce0ec9
Show file tree
Hide file tree
Showing 6 changed files with 758 additions and 171 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1811,6 +1811,7 @@ public void createPhraseMatcherTest() throws Exception {
.setActive(true)
.addAllPhraseMatchRuleGroups(new ArrayList<PhraseMatchRuleGroup>())
.setActivationUpdateTime(Timestamp.newBuilder().build())
.setUpdateTime(Timestamp.newBuilder().build())
.build();
mockContactCenterInsights.addResponse(expectedResponse);

Expand Down Expand Up @@ -1859,6 +1860,7 @@ public void createPhraseMatcherTest2() throws Exception {
.setActive(true)
.addAllPhraseMatchRuleGroups(new ArrayList<PhraseMatchRuleGroup>())
.setActivationUpdateTime(Timestamp.newBuilder().build())
.setUpdateTime(Timestamp.newBuilder().build())
.build();
mockContactCenterInsights.addResponse(expectedResponse);

Expand Down Expand Up @@ -1907,6 +1909,7 @@ public void getPhraseMatcherTest() throws Exception {
.setActive(true)
.addAllPhraseMatchRuleGroups(new ArrayList<PhraseMatchRuleGroup>())
.setActivationUpdateTime(Timestamp.newBuilder().build())
.setUpdateTime(Timestamp.newBuilder().build())
.build();
mockContactCenterInsights.addResponse(expectedResponse);

Expand Down Expand Up @@ -1952,6 +1955,7 @@ public void getPhraseMatcherTest2() throws Exception {
.setActive(true)
.addAllPhraseMatchRuleGroups(new ArrayList<PhraseMatchRuleGroup>())
.setActivationUpdateTime(Timestamp.newBuilder().build())
.setUpdateTime(Timestamp.newBuilder().build())
.build();
mockContactCenterInsights.addResponse(expectedResponse);

Expand Down
Loading

0 comments on commit 2ce0ec9

Please sign in to comment.