Skip to content

Commit

Permalink
samples: create conversation (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrucHLe authored Sep 23, 2021
1 parent 26edca8 commit 40d1263
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
45 changes: 45 additions & 0 deletions contact-center-insights/snippets/create_conversation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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.
#
# [START contactcenterinsights_create_conversation]
from google.cloud import contact_center_insights_v1


def create_conversation(
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

# 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]
44 changes: 44 additions & 0 deletions contact-center-insights/snippets/test_create_conversation.py
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


@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.create_conversation(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(capsys, conversation_resource):
conversation = conversation_resource
out, err = capsys.readouterr()
assert "Created {}".format(conversation.name) in out

0 comments on commit 40d1263

Please sign in to comment.