Share via


PromptTemplateConfig.ExecutionSettings Property

Definition

Gets or sets the collection of execution settings used by the prompt template.

[System.Text.Json.Serialization.JsonPropertyName("execution_settings")]
public System.Collections.Generic.Dictionary<string,Microsoft.SemanticKernel.PromptExecutionSettings> ExecutionSettings { get; set; }
[<System.Text.Json.Serialization.JsonPropertyName("execution_settings")>]
member this.ExecutionSettings : System.Collections.Generic.Dictionary<string, Microsoft.SemanticKernel.PromptExecutionSettings> with get, set
Public Property ExecutionSettings As Dictionary(Of String, PromptExecutionSettings)

Property Value

Attributes

Remarks

The settings dictionary is keyed by the service ID, or DefaultServiceId for the default execution settings. When setting, the service id of each PromptExecutionSettings must match the key in the dictionary.

Applies to