Record Class OpenAiApi.ChatCompletionChunk.ChunkChoice
java.lang.Object
java.lang.Record
org.springframework.ai.openai.api.OpenAiApi.ChatCompletionChunk.ChunkChoice
- Record Components:
finishReason- The reason the model stopped generating tokens.index- The index of the choice in the list of choices.delta- A chat completion delta generated by streamed model responses.logprobs- Log probability information for the choice.
- Enclosing class:
OpenAiApi.ChatCompletionChunk
public static record OpenAiApi.ChatCompletionChunk.ChunkChoice(OpenAiApi.ChatCompletionFinishReason finishReason, Integer index, OpenAiApi.ChatCompletionMessage delta, OpenAiApi.LogProbs logprobs)
extends Record
Chat completion choice.
- Author:
- Christian Tzolov, Michael Lavelle, Mariusz Bernacki, Thomas Vitale, David Frizelle, Alexandros Pappas, Filip Hrisafov
-
Constructor Summary
ConstructorsConstructorDescriptionChunkChoice(OpenAiApi.ChatCompletionFinishReason finishReason, Integer index, OpenAiApi.ChatCompletionMessage delta, OpenAiApi.LogProbs logprobs) Creates an instance of aChunkChoicerecord class. -
Method Summary
Modifier and TypeMethodDescriptiondelta()Returns the value of thedeltarecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefinishReasonrecord component.final inthashCode()Returns a hash code value for this object.index()Returns the value of theindexrecord component.logprobs()Returns the value of thelogprobsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ChunkChoice
public ChunkChoice(OpenAiApi.ChatCompletionFinishReason finishReason, Integer index, OpenAiApi.ChatCompletionMessage delta, OpenAiApi.LogProbs logprobs) Creates an instance of aChunkChoicerecord class.- Parameters:
finishReason- the value for thefinishReasonrecord componentindex- the value for theindexrecord componentdelta- the value for thedeltarecord componentlogprobs- the value for thelogprobsrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
finishReason
Returns the value of thefinishReasonrecord component.- Returns:
- the value of the
finishReasonrecord component
-
index
-
delta
-
logprobs
-