Uses of Class
com.microsoft.semantickernel.semanticfunctions.OutputVariable
-
Packages that use OutputVariable Package Description com.microsoft.semantickernel.semanticfunctions -
-
Uses of OutputVariable in com.microsoft.semantickernel.semanticfunctions
Methods in com.microsoft.semantickernel.semanticfunctions that return OutputVariable Modifier and Type Method Description OutputVariable<?>PromptTemplateConfig. getKernelReturnParameterMetadata()Get the return parameter metadata.OutputVariablePromptTemplateConfig. getOutputVariable()Get the output variable of the prompt template config.OutputVariable<T>KernelFunctionMetadata. getOutputVariableType()Get the return parameter of the function.OutputVariable<?>MethodDetails. getReturnParameter()Get the return parameter of the method.Methods in com.microsoft.semantickernel.semanticfunctions with parameters of type OutputVariable Modifier and Type Method Description static <T> KernelFunction<T>KernelFunctionFromMethod. create(Method method, Object target, String pluginName, String functionName, String description, List<InputVariable> parameters, OutputVariable<?> returnParameter)Creates a new instance ofKernelFunctionFromMethodfrom a method.<U> KernelFunction.FromPromptBuilder<U>KernelFunction.FromPromptBuilder. withOutputVariable(OutputVariable<U> outputVariable)Set the output variable for the function.<U> KernelFunction.FromPromptBuilder<U>KernelFunctionFromPrompt.Builder. withOutputVariable(OutputVariable<U> outputVariable)PromptTemplateConfig.BuilderPromptTemplateConfig.Builder. withOutputVariable(OutputVariable<?> outputVariable)Set the output variable of the prompt template config.KernelFunctionFromMethod.Builder<T>KernelFunctionFromMethod.Builder. withReturnParameter(OutputVariable<?> returnParameter)Sets the return parameter to use to build the function.Constructors in com.microsoft.semantickernel.semanticfunctions with parameters of type OutputVariable Constructor Description KernelFunctionMetadata(String pluginName, String name, String description, List<InputVariable> parameters, OutputVariable<T> returnParameterType)Create a new instance of KernelFunctionMetadata.MethodDetails(String name, String description, KernelFunctionFromMethod.ImplementationFunc<?> function, List<InputVariable> parameters, OutputVariable<?> returnParameter)Constructor.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
-