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.
-
Constructor Summary
ConstructorDescriptionChunkChoice
(OpenAiApi.ChatCompletionFinishReason finishReason, Integer index, OpenAiApi.ChatCompletionMessage delta, OpenAiApi.LogProbs logprobs) Creates an instance of aChunkChoice
record class. -
Method Summary
Modifier and TypeMethodDescriptiondelta()
Returns the value of thedelta
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefinishReason
record component.final int
hashCode()
Returns a hash code value for this object.index()
Returns the value of theindex
record component.logprobs()
Returns the value of thelogprobs
record component.final String
toString()
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 aChunkChoice
record class.- Parameters:
finishReason
- the value for thefinishReason
record componentindex
- the value for theindex
record componentdelta
- the value for thedelta
record componentlogprobs
- the value for thelogprobs
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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 thefinishReason
record component.- Returns:
- the value of the
finishReason
record component
-
index
Returns the value of theindex
record component.- Returns:
- the value of the
index
record component
-
delta
Returns the value of thedelta
record component.- Returns:
- the value of the
delta
record component
-
logprobs
Returns the value of thelogprobs
record component.- Returns:
- the value of the
logprobs
record component
-