Module org.elasticsearch.xcore
Record Class StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.core.inference.results.StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice
- Enclosing class:
StreamingUnifiedChatCompletionResults.ChatCompletionChunk
public static record StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice(StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice.Delta delta, String finishReason, int index)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class -
Constructor Summary
ConstructorsConstructorDescriptionChoice(StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice.Delta delta, String finishReason, int index) Creates an instance of aChoicerecord 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.intindex()Returns the value of theindexrecord component.final StringtoString()Returns a string representation of this record class.Iterator<? extends org.elasticsearch.xcontent.ToXContent> toXContentChunked(org.elasticsearch.xcontent.ToXContent.Params params)
-
Constructor Details
-
Choice
public Choice(StreamingUnifiedChatCompletionResults.ChatCompletionChunk.Choice.Delta delta, String finishReason, int index) Creates an instance of aChoicerecord class.- Parameters:
delta- the value for thedeltarecord componentfinishReason- the value for thefinishReasonrecord componentindex- the value for theindexrecord component
-
-
Method Details
-
toXContentChunked
public Iterator<? extends org.elasticsearch.xcontent.ToXContent> toXContentChunked(org.elasticsearch.xcontent.ToXContent.Params params) -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
delta
Returns the value of thedeltarecord component.- Returns:
- the value of the
deltarecord component
-
finishReason
Returns the value of thefinishReasonrecord component.- Returns:
- the value of the
finishReasonrecord component
-
index
public int index()Returns the value of theindexrecord component.- Returns:
- the value of the
indexrecord component
-