Module: Roles

Static roles for messages in the conversation.
Properties:
Name Type Description
Llaminate.ASSISTANT string Messages generated by the LLM assistant.
Llaminate.DEVELOPER string Messages from the developer or system.
Llaminate.SYSTEM string Messages from the developer or system.
Llaminate.USER string Messages from the user.
Llaminate.TOOL string Messages related to tool calls or responses.

Example

const history = [
  { role: Llaminate.SYSTEM, content: "You are a weather app that's always pessimistic." },
  { role: Llaminate.USER, content: "What's the weather forecast today?" },
  { role: Llaminate.ASSISTANT, content: "Sunny, but that probably means rain." }
];