ConversationsModelFactory.ConversationalAIAnalysis Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ConversationalAIAnalysis.
public static Azure.AI.Language.Conversations.Models.ConversationalAIAnalysis ConversationalAIAnalysis(string id = default, System.Collections.Generic.IEnumerable<Azure.AI.Language.Conversations.Models.ConversationalAIIntent> intents = default, System.Collections.Generic.IEnumerable<Azure.AI.Language.Conversations.Models.ConversationalAIEntity> entities = default);
static member ConversationalAIAnalysis : string * seq<Azure.AI.Language.Conversations.Models.ConversationalAIIntent> * seq<Azure.AI.Language.Conversations.Models.ConversationalAIEntity> -> Azure.AI.Language.Conversations.Models.ConversationalAIAnalysis
Public Shared Function ConversationalAIAnalysis (Optional id As String = Nothing, Optional intents As IEnumerable(Of ConversationalAIIntent) = Nothing, Optional entities As IEnumerable(Of ConversationalAIEntity) = Nothing) As ConversationalAIAnalysis
Parameters
- id
- String
The ID of the conversation.
- intents
- IEnumerable<ConversationalAIIntent>
The intent classification results for this conversation.
- entities
- IEnumerable<ConversationalAIEntity>
Global entities that are matched but not associated with any specific intent.
Returns
A new ConversationalAIAnalysis instance for mocking.