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
|
# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
import pytest
from azure.ai.language.conversations.aio import ConversationAnalysisClient
from azure.core.credentials import AzureKeyCredential
from devtools_testutils import AzureRecordedTestCase
class TestOrchestrationAppQnaResponseAsync(AzureRecordedTestCase):
@pytest.mark.asyncio
async def test_orchestration_app_qna_response(self, recorded_test, conversation_creds):
# analyze query
client = ConversationAnalysisClient(
conversation_creds["endpoint"],
AzureKeyCredential(conversation_creds["key"])
)
async with client:
query = "How are you?"
result = await 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 = 'ChitChat-QnA'
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"] == "QuestionAnswering"
# assert intent and entities
qna_result = top_intent_object["result"]
answer = qna_result["answers"][0]["answer"]
assert not answer is None
assert qna_result["answers"][0]["confidenceScore"] >= 0
|