Record Class DeepSeekApi.ChatCompletionMessage

java.lang.Object
java.lang.Record
org.springframework.ai.deepseek.api.DeepSeekApi.ChatCompletionMessage
Record Components:
rawContent - The contents of the message. The message content is always a String.
role - The role of the messages author. Could be one of the DeepSeekApi.ChatCompletionMessage.Role types.
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 the DeepSeekApi.ChatCompletionMessage.Role.TOOL role and null otherwise.
toolCalls - The tool calls generated by the model, such as function calls. Applicable only for DeepSeekApi.ChatCompletionMessage.Role.ASSISTANT role and null otherwise.
Enclosing class:
DeepSeekApi

public static record DeepSeekApi.ChatCompletionMessage(Object rawContent, DeepSeekApi.ChatCompletionMessage.Role role, String name, String toolCallId, List<DeepSeekApi.ChatCompletionMessage.ToolCall> toolCalls, Boolean prefix, String reasoningContent) extends Record
Message comprising the conversation.
  • Constructor Details

    • ChatCompletionMessage

      public ChatCompletionMessage(Object content, DeepSeekApi.ChatCompletionMessage.Role role)
      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 content, DeepSeekApi.ChatCompletionMessage.Role role, String name, String toolCallId, List<DeepSeekApi.ChatCompletionMessage.ToolCall> toolCalls)
      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.
      name - The name of the author of this message.
      toolCallId - The id of the tool call.
      toolCalls - The tool calls generated by the model, such as function calls.
    • ChatCompletionMessage

      public ChatCompletionMessage(Object rawContent, DeepSeekApi.ChatCompletionMessage.Role role, String name, String toolCallId, List<DeepSeekApi.ChatCompletionMessage.ToolCall> toolCalls, Boolean prefix, String reasoningContent)
      Creates an instance of a ChatCompletionMessage record class.
      Parameters:
      rawContent - the value for the rawContent record component
      role - the value for the role record component
      name - the value for the name record component
      toolCallId - the value for the toolCallId record component
      toolCalls - the value for the toolCalls record component
      prefix - the value for the prefix record component
      reasoningContent - the value for the reasoningContent record component
  • Method Details

    • content

      public String content()
      Get message content as String.
    • toString

      public final 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • rawContent

      public Object rawContent()
      Returns the value of the rawContent record component.
      Returns:
      the value of the rawContent record component
    • role

      Returns the value of the role record component.
      Returns:
      the value of the role record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • toolCallId

      public String toolCallId()
      Returns the value of the toolCallId record component.
      Returns:
      the value of the toolCallId record component
    • toolCalls

      Returns the value of the toolCalls record component.
      Returns:
      the value of the toolCalls record component
    • prefix

      public Boolean prefix()
      Returns the value of the prefix record component.
      Returns:
      the value of the prefix record component
    • reasoningContent

      public String reasoningContent()
      Returns the value of the reasoningContent record component.
      Returns:
      the value of the reasoningContent record component