-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: create conversation with TTL (#43)
- Loading branch information
Showing
5 changed files
with
99 additions
and
2 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
contact-center-insights/snippets/create_conversation_with_ttl.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Create a conversation with a TTL. | ||
# [START contactcenterinsights_create_conversation_with_ttl] | ||
from google.cloud import contact_center_insights_v1 | ||
from google.protobuf import duration_pb2 | ||
|
||
|
||
def create_conversation_with_ttl( | ||
project_id: str, | ||
transcript_uri: str = "gs://cloud-samples-data/ccai/chat_sample.json", | ||
audio_uri: str = "gs://cloud-samples-data/ccai/voice_6912.txt", | ||
) -> contact_center_insights_v1.Conversation: | ||
# Construct a parent resource. | ||
parent = contact_center_insights_v1.ContactCenterInsightsClient.common_location_path( | ||
project_id, "us-central1" | ||
) | ||
|
||
# Construct a conversation. | ||
conversation = contact_center_insights_v1.Conversation() | ||
conversation.data_source.gcs_source.transcript_uri = transcript_uri | ||
conversation.data_source.gcs_source.audio_uri = audio_uri | ||
conversation.medium = contact_center_insights_v1.Conversation.Medium.CHAT | ||
|
||
# Construct a TTL. | ||
ttl = duration_pb2.Duration() | ||
ttl.seconds = 86400 | ||
conversation.ttl = ttl | ||
|
||
# Call the Insights client to create a conversation. | ||
insights_client = contact_center_insights_v1.ContactCenterInsightsClient() | ||
conversation = insights_client.create_conversation( | ||
parent=parent, conversation=conversation | ||
) | ||
|
||
print(f"Created {conversation.name}") | ||
return conversation | ||
|
||
|
||
# [END contactcenterinsights_create_conversation_with_ttl] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,4 +50,5 @@ def set_project_ttl(project_id: str) -> None: | |
) | ||
) | ||
|
||
|
||
# [END contactcenterinsights_set_project_ttl] |
44 changes: 44 additions & 0 deletions
44
contact-center-insights/snippets/test_create_conversation_with_ttl.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
import google.auth | ||
|
||
from google.cloud import contact_center_insights_v1 | ||
|
||
import pytest | ||
|
||
import create_conversation_with_ttl | ||
|
||
|
||
@pytest.fixture | ||
def project_id(): | ||
_, project_id = google.auth.default() | ||
return project_id | ||
|
||
|
||
@pytest.fixture | ||
def conversation_resource(project_id): | ||
# Create a conversation | ||
conversation = create_conversation_with_ttl.create_conversation_with_ttl(project_id) | ||
yield conversation | ||
|
||
# Delete the conversation. | ||
insights_client = contact_center_insights_v1.ContactCenterInsightsClient() | ||
insights_client.delete_conversation(name=conversation.name) | ||
|
||
|
||
def test_create_conversation_with_ttl(capsys, conversation_resource): | ||
conversation = conversation_resource | ||
out, err = capsys.readouterr() | ||
assert "Created {}".format(conversation.name) in out |