Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [contactcenterinsights] support for generating summaries during conversation analysis #9391

Merged
merged 2 commits into from
May 9, 2023
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
4 changes: 2 additions & 2 deletions java-contact-center-insights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.12.0</version>
<version>26.13.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -195,7 +195,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
[stability-image]: https://img.shields.io/badge/stability-stable-green
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-contact-center-insights.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-contact-center-insights/2.14.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-contact-center-insights/2.16.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public void createConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -165,6 +166,7 @@ public void createConversationTest2() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -227,6 +229,7 @@ public void uploadConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -302,6 +305,7 @@ public void updateConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand All @@ -322,6 +326,7 @@ public void updateConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -368,6 +373,7 @@ public void updateConversationExceptionTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -396,6 +402,7 @@ public void getConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -454,6 +461,7 @@ public void getConversationTest2() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public void createConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -166,6 +167,7 @@ public void createConversationTest2() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -224,6 +226,7 @@ public void uploadConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -299,6 +302,7 @@ public void updateConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -354,6 +358,7 @@ public void getConversationTest() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down Expand Up @@ -406,6 +411,7 @@ public void getConversationTest2() throws Exception {
.setDuration(Duration.newBuilder().build())
.setTurnCount(428155597)
.setLatestAnalysis(Analysis.newBuilder().build())
.setLatestSummary(ConversationSummarizationSuggestionData.newBuilder().build())
.addAllRuntimeAnnotations(new ArrayList<RuntimeAnnotation>())
.putAllDialogflowIntents(new HashMap<String, DialogflowIntent>())
.setObfuscatedUserId("obfuscatedUserId971552298")
Expand Down
Loading