Skip to content

Roles

AIRoles

Bases: StrEnum

Roles for the LLM messages.

MODEL has the value assistant, because it is legacy standard to name the role of the model assistant.

Source code in src/llmir/roles.py
 4
 5
 6
 7
 8
 9
10
11
12
13
14
class AIRoles(StrEnum):
    """
    Roles for the LLM messages.

    MODEL has the value assistant, because it is legacy standard to name the role of the model assistant.
    """

    USER = "user"
    MODEL = "assistant"
    SYSTEM = "system"
    TOOL = "tool"