Package nl.dannyj.mistral.builders
Class MessageListBuilder
java.lang.Object
nl.dannyj.mistral.builders.MessageListBuilder
The MessageListBuilder class is a builder class for creating a list of Message objects.
It provides methods to add messages of different roles (system, assistant, user) to the list.
The build method returns the list of Message objects that have been added.
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor that initializes an empty list of Message objects.MessageListBuilder
(List<Message> messages) Constructor that initializes the list of Message objects with a provided list. -
Method Summary
Modifier and TypeMethodDescriptionAdds a message with the assistant role to the list with the provided content.build()
Returns the list of Message objects that have been added.Adds a custom Message object to the list.Adds a message with the system role to the list with the provided content.Adds a message with the user role to the list with the provided content.
-
Constructor Details
-
MessageListBuilder
public MessageListBuilder()Default constructor that initializes an empty list of Message objects. -
MessageListBuilder
Constructor that initializes the list of Message objects with a provided list.- Parameters:
messages
- The initial list of Message objects
-
-
Method Details
-
system
Adds a message with the system role to the list with the provided content.- Parameters:
content
- The content of the system message- Returns:
- The builder instance
-
assistant
Adds a message with the assistant role to the list with the provided content.- Parameters:
content
- The content of the assistant message- Returns:
- The builder instance
-
user
Adds a message with the user role to the list with the provided content.- Parameters:
content
- The content of the user message- Returns:
- The builder instance
-
message
Adds a custom Message object to the list.- Parameters:
message
- The Message object to be added- Returns:
- The builder instance
-
build
Returns the list of Message objects that have been added.- Returns:
- The list of Message objects
-