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

com.microsoft.semantickernel.builders.SemanticKernelBuilder Maven / Gradle / Ivy

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

/**
 * Interface for all builders.
 *
 * @param  the type to build.
 */
public interface SemanticKernelBuilder {

    /**
     * Build the object.
     *
     * @return a constructed object.
     */
    T build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy