Record Class DashScopeApiSpec.ChatCompletionMessage
java.lang.Object
java.lang.Record
com.alibaba.cloud.ai.dashscope.spec.DashScopeApiSpec.ChatCompletionMessage
- Record Components:
rawContent- The contents of the message. Can be either aDashScopeApiSpec.ChatCompletionMessage.MediaContentor aString. The response message content is always aString.role- The role of the messages author. Could be one of theDashScopeApiSpec.ChatCompletionMessage.Roletypes.name- An optional name for the participant. Provides the model information to differentiate between participants of the same role. In case of Function calling, the name is the function name that the message is responding to.toolCallId- Tool call that this message is responding to. Only applicable for theDashScopeApiSpec.ChatCompletionMessage.Role.TOOLrole and null otherwise.toolCalls- The tool calls generated by the model, such as function calls.reasoningContent- The reasoning content of the message. DeepSeek ReasoningContent Applicable only forDashScopeApiSpec.ChatCompletionMessage.Role.ASSISTANTrole and null otherwise.partial- Indicates whether this message is a partial prefix for code completion. When set to true, the model will continue generating from the provided content. Applicable only forDashScopeApiSpec.ChatCompletionMessage.Role.ASSISTANTrole and null otherwise.
- Enclosing class:
- DashScopeApiSpec
public static record DashScopeApiSpec.ChatCompletionMessage(Object rawContent, DashScopeApiSpec.ChatCompletionMessage.Role role, String name, String toolCallId, List<DashScopeApiSpec.ChatCompletionMessage.ToolCall> toolCalls, String reasoningContent, Boolean partial, String phase, List<DashScopeApiSpec.ChatCompletionAnnotations> annotations, String status)
extends Record
Message comprising the conversation.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordThe function definition.static final recordAn array of content parts with a defined type.static enumThe role of the author of this message.static final recordThe relevant tool call. -
Constructor Summary
ConstructorsConstructorDescriptionCreate a chat completion message with the given content and role.ChatCompletionMessage(Object rawContent, DashScopeApiSpec.ChatCompletionMessage.Role role, String name, String toolCallId, List<DashScopeApiSpec.ChatCompletionMessage.ToolCall> toolCalls, String reasoningContent, Boolean partial, String phase, List<DashScopeApiSpec.ChatCompletionAnnotations> annotations, String status) Creates an instance of aChatCompletionMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationsrecord component.content()Get message content as String.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.partial()Returns the value of thepartialrecord component.phase()Returns the value of thephaserecord component.Returns the value of therawContentrecord component.Returns the value of thereasoningContentrecord component.role()Returns the value of therolerecord component.status()Returns the value of thestatusrecord component.Returns the value of thetoolCallIdrecord component.Returns the value of thetoolCallsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ChatCompletionMessage
Create a chat completion message with the given content and role. All other fields are null.- Parameters:
content- The contents of the message.role- The role of the author of this message.
-
ChatCompletionMessage
public ChatCompletionMessage(Object rawContent, DashScopeApiSpec.ChatCompletionMessage.Role role, String name, String toolCallId, List<DashScopeApiSpec.ChatCompletionMessage.ToolCall> toolCalls, String reasoningContent, Boolean partial, String phase, List<DashScopeApiSpec.ChatCompletionAnnotations> annotations, String status) Creates an instance of aChatCompletionMessagerecord class.- Parameters:
rawContent- the value for therawContentrecord componentrole- the value for therolerecord componentname- the value for thenamerecord componenttoolCallId- the value for thetoolCallIdrecord componenttoolCalls- the value for thetoolCallsrecord componentreasoningContent- the value for thereasoningContentrecord componentpartial- the value for thepartialrecord componentphase- the value for thephaserecord componentannotations- the value for theannotationsrecord componentstatus- the value for thestatusrecord component
-
-
Method Details
-
content
Get message content as String. If content contains both audio and text, audio takes precedence. Audio content is wrapped in tags. -
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). -
rawContent
Returns the value of therawContentrecord component.- Returns:
- the value of the
rawContentrecord component
-
role
Returns the value of therolerecord component.- Returns:
- the value of the
rolerecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
toolCallId
Returns the value of thetoolCallIdrecord component.- Returns:
- the value of the
toolCallIdrecord component
-
toolCalls
Returns the value of thetoolCallsrecord component.- Returns:
- the value of the
toolCallsrecord component
-
reasoningContent
Returns the value of thereasoningContentrecord component.- Returns:
- the value of the
reasoningContentrecord component
-
partial
Returns the value of thepartialrecord component.- Returns:
- the value of the
partialrecord component
-
phase
Returns the value of thephaserecord component.- Returns:
- the value of the
phaserecord component
-
annotations
Returns the value of theannotationsrecord component.- Returns:
- the value of the
annotationsrecord component
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-