Class Message

java.lang.Object
nl.dannyj.mistral.models.completion.Message

public class Message extends Object
A message in a conversation. A message contains the role of the message, and the content of the message.
  • Constructor Details

  • Method Details

    • getRole

      public MessageRole getRole()
      The role of the message. Currently, there are 3 roles: user, assistant, and system.
      Returns:
      The role of the message.
    • getContent

      public String getContent()
      The content of the message.
      Returns:
      The content of the message.
    • getToolCalls

      public List<String> getToolCalls()
      Unimplemented. Don't use.
    • setRole

      public void setRole(MessageRole role)
      The role of the message. Currently, there are 3 roles: user, assistant, and system.
      Parameters:
      role - The role of the message.
    • setContent

      public void setContent(String content)
      The content of the message.
      Parameters:
      content - The content of the message.
    • setToolCalls

      public void setToolCalls(List<String> toolCalls)
      Unimplemented. Don't use.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object