You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This sample shows how to call AnalyzeConversationAsync.
33
+
<code><![CDATA[
34
+
Uri endpoint = new Uri("<endpoint>");
35
+
AzureKeyCredential credential = new AzureKeyCredential("<key>");
36
+
ConversationAnalysisClient client = new ConversationAnalysisClient(endpoint, credential);
37
+
12
38
AnalyzeConversationInput analyzeConversationInput = new ConversationLanguageUnderstandingInput(new ConversationAnalysisInput(new TextConversationItem("1", "1", "Book a flight to Seattle on Oct 10th")), new ConversationLanguageUnderstandingActionContent("{project-name}", "{deployment-name}"));
This sample shows how to call AnalyzeConversation.
115
+
<code><![CDATA[
116
+
Uri endpoint = new Uri("<endpoint>");
117
+
AzureKeyCredential credential = new AzureKeyCredential("<key>");
118
+
ConversationAnalysisClient client = new ConversationAnalysisClient(endpoint, credential);
119
+
68
120
AnalyzeConversationInput analyzeConversationInput = new ConversationLanguageUnderstandingInput(new ConversationAnalysisInput(new TextConversationItem("1", "1", "Book a flight to Seattle on Oct 10th")), new ConversationLanguageUnderstandingActionContent("{project-name}", "{deployment-name}"));
Copy file name to clipboardExpand all lines: sdk/cognitivelanguage/Azure.AI.Language.Conversations/src/Generated/Models/AnalyzeConversationActionResult.Serialization.cs
Copy file name to clipboardExpand all lines: sdk/cognitivelanguage/Azure.AI.Language.Conversations/src/Generated/Models/AnalyzeConversationActionResult.cs
Copy file name to clipboardExpand all lines: sdk/cognitivelanguage/Azure.AI.Language.Conversations/src/Generated/Models/AnalyzeConversationInput.Serialization.cs
Copy file name to clipboardExpand all lines: sdk/cognitivelanguage/Azure.AI.Language.Conversations/src/Generated/Models/AnalyzeConversationInputKind.cs
Copy file name to clipboardExpand all lines: sdk/cognitivelanguage/Azure.AI.Language.Conversations/src/Generated/Models/AnalyzeConversationResultKind.cs
0 commit comments