Uses of Class
com.microsoft.semantickernel.orchestration.PromptExecutionSettings
-
-
Uses of PromptExecutionSettings in com.microsoft.semantickernel.orchestration
Methods in com.microsoft.semantickernel.orchestration that return PromptExecutionSettings Modifier and Type Method Description PromptExecutionSettingsPromptExecutionSettings.Builder. build()Build the PromptExecutionSettings.PromptExecutionSettingsInvocationContext. getPromptExecutionSettings()Get the settings for prompt execution.Methods in com.microsoft.semantickernel.orchestration with parameters of type PromptExecutionSettings Modifier and Type Method Description FunctionInvocation<T>FunctionInvocation. withPromptExecutionSettings(PromptExecutionSettings promptExecutionSettings)Supply prompt execution settings to the function invocation.InvocationContext.BuilderInvocationContext.Builder. withPromptExecutionSettings(PromptExecutionSettings promptExecutionSettings)Add prompt execution settings to the builder. -
Uses of PromptExecutionSettings in com.microsoft.semantickernel.semanticfunctions
Methods in com.microsoft.semantickernel.semanticfunctions that return types with arguments of type PromptExecutionSettings Modifier and Type Method Description Map<String,PromptExecutionSettings>KernelFunction. getExecutionSettings()Get an unmodifiable map of the execution settings for the function.Map<String,PromptExecutionSettings>PromptTemplateConfig. getExecutionSettings()Get the prompt execution settings of the prompt template config.Methods in com.microsoft.semantickernel.semanticfunctions with parameters of type PromptExecutionSettings Modifier and Type Method Description KernelFunction.FromPromptBuilder<T>KernelFunction.FromPromptBuilder. withDefaultExecutionSettings(PromptExecutionSettings executionSettings)Set the default execution settings for the function.KernelFunction.FromPromptBuilder<T>KernelFunctionFromPrompt.Builder. withDefaultExecutionSettings(PromptExecutionSettings executionSettings)Method parameters in com.microsoft.semantickernel.semanticfunctions with type arguments of type PromptExecutionSettings Modifier and Type Method Description KernelFunction.FromPromptBuilder<T>KernelFunction.FromPromptBuilder. withExecutionSettings(Map<String,PromptExecutionSettings> executionSettings)Set the execution settings for the function.KernelFunction.FromPromptBuilder<T>KernelFunctionFromPrompt.Builder. withExecutionSettings(Map<String,PromptExecutionSettings> executionSettings)PromptTemplateConfig.BuilderPromptTemplateConfig.Builder. withExecutionSettings(Map<String,PromptExecutionSettings> executionSettings)Set the prompt execution settings of the prompt template config.Constructor parameters in com.microsoft.semantickernel.semanticfunctions with type arguments of type PromptExecutionSettings Constructor Description PromptTemplateConfig(int schema, String name, String template, String templateFormat, String description, List<InputVariable> inputVariables, OutputVariable outputVariable, Map<String,PromptExecutionSettings> executionSettings)Constructor for a prompt template config -
Uses of PromptExecutionSettings in com.microsoft.semantickernel.services
Methods in com.microsoft.semantickernel.services that return PromptExecutionSettings Modifier and Type Method Description PromptExecutionSettingsAIServiceSelection. getSettings()Gets the settings associated with the selected service.Constructors in com.microsoft.semantickernel.services with parameters of type PromptExecutionSettings Constructor Description AIServiceSelection(T service, PromptExecutionSettings settings)Creates a new AI service selection. -
Uses of PromptExecutionSettings in com.microsoft.semantickernel.services.textcompletion
Methods in com.microsoft.semantickernel.services.textcompletion with parameters of type PromptExecutionSettings Modifier and Type Method Description reactor.core.publisher.Flux<StreamingTextContent>TextGenerationService. getStreamingTextContentsAsync(String prompt, PromptExecutionSettings executionSettings, Kernel kernel)Get streaming results for the prompt using the specified execution settings.reactor.core.publisher.Mono<List<TextContent>>TextGenerationService. getTextContentsAsync(String prompt, PromptExecutionSettings executionSettings, Kernel kernel)Creates a completion for the prompt and settings.
-