1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
from azure.ai.language.conversations import ConversationAnalysisClient
from azure.core.credentials import AzureKeyCredential
from devtools_testutils import AzureRecordedTestCase
class TestOrchestrationAppConvResponse(AzureRecordedTestCase):
def test_orchestration_app_conv_response(self, recorded_test, conversation_creds):
# analyze query
client = ConversationAnalysisClient(
conversation_creds["endpoint"],
AzureKeyCredential(conversation_creds["key"])
)
with client:
query = "Send an email to Carol about the tomorrow's demo"
result = client.analyze_conversation(
task={
"kind": "Conversation",
"analysisInput": {
"conversationItem": {
"participantId": "1",
"id": "1",
"modality": "text",
"language": "en",
"text": query
},
"isLoggingEnabled": False
},
"parameters": {
"projectName": conversation_creds["orch_project_name"],
"deploymentName": conversation_creds["orch_deployment_name"],
"verbose": True
}
}
)
# assert - main object
top_project = "EmailIntent"
assert not result is None
assert result["kind"] == "ConversationResult"
assert result["result"]["query"] == query
# assert - prediction type
assert result["result"]["prediction"]["projectKind"] == "Orchestration"
# assert - top matching project
assert result["result"]["prediction"]["topIntent"] == top_project
top_intent_object = result["result"]["prediction"]["intents"][top_project]
assert top_intent_object["targetProjectKind"] == "Conversation"
# assert intent and entities
conversation_result = top_intent_object["result"]["prediction"]
assert conversation_result["topIntent"] == 'Send'
assert len(conversation_result["intents"]) > 0
assert conversation_result["intents"][0]["category"] == 'Send'
assert conversation_result["intents"][0]["confidenceScore"] > 0
# assert - entities
assert len(conversation_result["entities"]) > 0
assert conversation_result["entities"][0]["category"] == 'Contact'
assert conversation_result["entities"][0]["text"] == 'Carol'
assert conversation_result["entities"][0]["confidenceScore"] > 0
|