Share via


ConversationsModelFactory.ConversationLanguageUnderstandingActionContent Method

Definition

Initializes a new instance of ConversationLanguageUnderstandingActionContent.

public static Azure.AI.Language.Conversations.Models.ConversationLanguageUnderstandingActionContent ConversationLanguageUnderstandingActionContent (string projectName = default, string deploymentName = default, bool? verbose = default, bool? isLoggingEnabled = default, Azure.AI.Language.Conversations.Models.StringIndexType? stringIndexType = default, string directTarget = default, System.Collections.Generic.IDictionary<string,Azure.AI.Language.Conversations.Models.AnalysisConfig> targetProjectParameters = default);
static member ConversationLanguageUnderstandingActionContent : string * string * Nullable<bool> * Nullable<bool> * Nullable<Azure.AI.Language.Conversations.Models.StringIndexType> * string * System.Collections.Generic.IDictionary<string, Azure.AI.Language.Conversations.Models.AnalysisConfig> -> Azure.AI.Language.Conversations.Models.ConversationLanguageUnderstandingActionContent
Public Shared Function ConversationLanguageUnderstandingActionContent (Optional projectName As String = Nothing, Optional deploymentName As String = Nothing, Optional verbose As Nullable(Of Boolean) = Nothing, Optional isLoggingEnabled As Nullable(Of Boolean) = Nothing, Optional stringIndexType As Nullable(Of StringIndexType) = Nothing, Optional directTarget As String = Nothing, Optional targetProjectParameters As IDictionary(Of String, AnalysisConfig) = Nothing) As ConversationLanguageUnderstandingActionContent

Parameters

projectName
String

The name of the project to use.

deploymentName
String

The name of the deployment to use.

verbose
Nullable<Boolean>

If true, the service will return more detailed information in the response.

isLoggingEnabled
Nullable<Boolean>

If true, the service will keep the query for further review.

stringIndexType
Nullable<StringIndexType>

Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets.

directTarget
String

The name of a target project to forward the request to.

targetProjectParameters
IDictionary<String,AnalysisConfig>

A dictionary representing the parameters for each target project. Please note AnalysisConfig is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include ConversationConfig, LuisConfig and QuestionAnsweringConfig.

Returns

A new ConversationLanguageUnderstandingActionContent instance for mocking.

Applies to