Class MessageListBuilder

java.lang.Object
nl.dannyj.mistral.builders.MessageListBuilder

public class MessageListBuilder extends Object
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 Details

    • MessageListBuilder

      public MessageListBuilder()
      Default constructor that initializes an empty list of Message objects.
    • MessageListBuilder

      public MessageListBuilder(List<Message> messages)
      Constructor that initializes the list of Message objects with a provided list.
      Parameters:
      messages - The initial list of Message objects
  • Method Details

    • system

      public MessageListBuilder system(String content)
      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

      public MessageListBuilder assistant(String content)
      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

      public MessageListBuilder user(String content)
      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

      public MessageListBuilder message(Message message)
      Adds a custom Message object to the list.
      Parameters:
      message - The Message object to be added
      Returns:
      The builder instance
    • build

      public List<Message> build()
      Returns the list of Message objects that have been added.
      Returns:
      The list of Message objects