Record Class MistralAiApi.ChatCompletionMessage
java.lang.Object
java.lang.Record
org.springframework.ai.mistralai.api.MistralAiApi.ChatCompletionMessage
- Record Components:
rawContent- The contents of the message. Can be either aMistralAiApi.ChatCompletionMessage.MediaContentor aString. The response message content is always aString.role- The role of the messages author. Could be one of theMistralAiApi.ChatCompletionMessage.Roletypes.name- The name of the author of the message.toolCalls- The tool calls generated by the model, such as function calls. Applicable only forMistralAiApi.ChatCompletionMessage.Role.ASSISTANTrole and null otherwise.toolCallId- Tool call that this message is responding to. Only applicable for theMistralAiApi.ChatCompletionMessage.Role.TOOLrole and null otherwise.
- Enclosing class:
- MistralAiApi
public static record MistralAiApi.ChatCompletionMessage(Object rawContent, MistralAiApi.ChatCompletionMessage.Role role, String name, List<MistralAiApi.ChatCompletionMessage.ToolCall> toolCalls, String toolCallId)
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
ConstructorsConstructorDescriptionChatCompletionMessage(Object content, MistralAiApi.ChatCompletionMessage.Role role) Create a chat completion message with the given content and role.ChatCompletionMessage(Object content, MistralAiApi.ChatCompletionMessage.Role role, String name, List<MistralAiApi.ChatCompletionMessage.ToolCall> toolCalls) Message comprising the conversation.ChatCompletionMessage(Object rawContent, MistralAiApi.ChatCompletionMessage.Role role, String name, List<MistralAiApi.ChatCompletionMessage.ToolCall> toolCalls, String toolCallId) Creates an instance of aChatCompletionMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()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.Returns the value of therawContentrecord component.role()Returns the value of therolerecord 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
public ChatCompletionMessage(Object content, MistralAiApi.ChatCompletionMessage.Role role, String name, List<MistralAiApi.ChatCompletionMessage.ToolCall> toolCalls) Message comprising the conversation.- Parameters:
content- The contents of the message.role- The role of the messages author. Could be one of theMistralAiApi.ChatCompletionMessage.Roletypes.toolCalls- The tool calls generated by the model, such as function calls. Applicable only forMistralAiApi.ChatCompletionMessage.Role.ASSISTANTrole and null otherwise.
-
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, MistralAiApi.ChatCompletionMessage.Role role, String name, List<MistralAiApi.ChatCompletionMessage.ToolCall> toolCalls, String toolCallId) Creates an instance of aChatCompletionMessagerecord class.- Parameters:
rawContent- the value for therawContentrecord componentrole- the value for therolerecord componentname- the value for thenamerecord componenttoolCalls- the value for thetoolCallsrecord componenttoolCallId- the value for thetoolCallIdrecord component
-
-
Method Details
-
content
Get message content as String. -
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
-
toolCalls
Returns the value of thetoolCallsrecord component.- Returns:
- the value of the
toolCallsrecord component
-
toolCallId
Returns the value of thetoolCallIdrecord component.- Returns:
- the value of the
toolCallIdrecord component
-