com.microsoft.semantickernel.services.StreamingTextContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantickernel-api Show documentation
Show all versions of semantickernel-api Show documentation
Defines the public interface for the Semantic Kernel
// 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;
}
}