Class Message
java.lang.Object
nl.dannyj.mistral.models.completion.Message
A message in a conversation. A message contains the role of the message, and the content of the message.
-
Constructor Summary
ConstructorsConstructorDescriptionMessage()
Message
(MessageRole role, String content) Message
(MessageRole role, String content, List<String> toolCalls) -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
boolean
The content of the message.getRole()
The role of the message.Unimplemented.int
hashCode()
void
setContent
(String content) The content of the message.void
setRole
(MessageRole role) The role of the message.void
setToolCalls
(List<String> toolCalls) Unimplemented.toString()
-
Constructor Details
-
Message
-
Message
-
Message
public Message()
-
-
Method Details
-
getRole
The role of the message. Currently, there are 3 roles: user, assistant, and system.- Returns:
- The role of the message.
-
getContent
The content of the message.- Returns:
- The content of the message.
-
getToolCalls
Unimplemented. Don't use. -
setRole
The role of the message. Currently, there are 3 roles: user, assistant, and system.- Parameters:
role
- The role of the message.
-
setContent
The content of the message.- Parameters:
content
- The content of the message.
-
setToolCalls
Unimplemented. Don't use. -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-