Uses of Class
com.microsoft.semantickernel.semanticfunctions.InputVariable
-
Packages that use InputVariable Package Description com.microsoft.semantickernel.semanticfunctions -
-
Uses of InputVariable in com.microsoft.semantickernel.semanticfunctions
Methods in com.microsoft.semantickernel.semanticfunctions that return InputVariable Modifier and Type Method Description static InputVariableInputVariable. build(String name, Class<?> type, String description, String defaultValue, List<?> enumValues, boolean required)Creates a new instance ofInputVariable.Methods in com.microsoft.semantickernel.semanticfunctions that return types with arguments of type InputVariable Modifier and Type Method Description List<InputVariable>PromptTemplateConfig. getInputVariables()Get the inputVariables of the prompt template config.List<InputVariable>PromptTemplateConfig. getKernelParametersMetadata()Get the parameters metadata.List<InputVariable>KernelFunctionMetadata. getParameters()Get the parameters of the function.List<InputVariable>MethodDetails. getParameters()Get the parameters of the method.Methods in com.microsoft.semantickernel.semanticfunctions with parameters of type InputVariable Modifier and Type Method Description PromptTemplateConfig.BuilderPromptTemplateConfig.Builder. addInputVariable(InputVariable inputVariable)Add an input variable to the prompt template config.Method parameters in com.microsoft.semantickernel.semanticfunctions with type arguments of type InputVariable 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.KernelFunction.FromPromptBuilder<T>KernelFunction.FromPromptBuilder. withInputParameters(List<InputVariable> inputVariables)Set the input parameters for the function.KernelFunction.FromPromptBuilder<T>KernelFunctionFromPrompt.Builder. withInputParameters(List<InputVariable> inputVariables)PromptTemplateConfig.BuilderPromptTemplateConfig.Builder. withInputVariables(List<InputVariable> inputVariables)Set the inputVariables of the prompt template config.KernelFunctionFromMethod.Builder<T>KernelFunctionFromMethod.Builder. withParameters(List<InputVariable> parameters)Sets the parameters to use to build the function.Constructor parameters in com.microsoft.semantickernel.semanticfunctions with type arguments of type InputVariable 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
-