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

com.microsoft.semantickernel.services.StreamingTextContent Maven / Gradle / Ivy

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

import com.microsoft.semantickernel.contextvariables.ContextVariable;
import java.util.Map;
import javax.annotation.Nullable;

/**
 * Base class which represents the content returned by a streaming AI service.
 *
 * @param  The type of the content.
 */
public abstract class StreamingTextContent extends KernelContentImpl implements
    StreamingKernelContent {

    /**
     * In a scenario of multiple choices per request, this represents the zero-based index of the
     * choice in the streaming sequence
     */
    private final int choiceIndex;

    /**
     * Initializes a new instance of the {@link StreamingTextContent} class.
     *
     * @param innerContent The inner content representation.
     * @param choiceIndex  The zero-based index of the choice in the streaming sequence.
     * @param modelId      The model identifier used to generate the content.
     * @param metadata     The metadata associated with the content.
     */
    protected StreamingTextContent(
        @Nullable T innerContent,
        int choiceIndex,
        @Nullable String modelId,
        @Nullable Map> metadata) {
        super(innerContent, modelId, null);
        this.choiceIndex = choiceIndex;
    }

    /**
     * Gets the zero-based index of the choice in the streaming sequence.
     *
     * @return The zero-based index of the choice in the streaming sequence.
     */
    public int getChoiceIndex() {
        return choiceIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy