All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.semantickernel.semanticfunctions.PromptTemplate Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.semanticfunctions;

import com.microsoft.semantickernel.Kernel;
import com.microsoft.semantickernel.orchestration.InvocationContext;
import javax.annotation.Nullable;
import reactor.core.publisher.Mono;

/**
 * Represents a prompt template that can be rendered to a string.
 */
public interface PromptTemplate {

    /**
     * Renders the template using the supplied {@code Kernel}, {@code KernelFunctionArguments}, and
     * {@code InvocationContext}.
     *
     * @param kernel    The {@link Kernel} containing services, plugins, and other state for use
     *                  throughout the operation.
     * @param arguments The arguments to use to satisfy any input variables in the prompt template.
     * @param context   The {@link InvocationContext} which carries optional information for the
     *                  prompt rendering.
     * @return The rendered prompt.
     */
    Mono renderAsync(
        Kernel kernel,
        @Nullable KernelFunctionArguments arguments,
        @Nullable InvocationContext context);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy