Record Class Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Completion
java.lang.Object
java.lang.Record
org.springframework.ai.bedrock.jurassic2.api.Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Completion
- Record Components:
data
- The data field contains the prompt used for the completion.finishReason
- The finishReason field provides detailed information about why the completion was halted.
- Enclosing class:
- Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse
public static record Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Completion(Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Prompt data, Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.FinishReason finishReason)
extends Record
The completions generated by the model.
-
Constructor Summary
ConstructorDescriptionCompletion
(Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Prompt data, Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.FinishReason finishReason) Creates an instance of aCompletion
record class. -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
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.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Completion
public Completion(Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.Prompt data, Ai21Jurassic2ChatBedrockApi.Ai21Jurassic2ChatResponse.FinishReason finishReason) Creates an instance of aCompletion
record class.- Parameters:
data
- the value for thedata
record componentfinishReason
- the value for thefinishReason
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)
. -
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-
finishReason
Returns the value of thefinishReason
record component.- Returns:
- the value of the
finishReason
record component
-