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

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 #91

Merged
merged 2 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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