LLMMessageRole#

class council.llm.LLMMessageRole(value)[source]#

Bases: str, Enum

Enum representing the roles of messages in a conversation or dialogue.

Assistant = 'assistant'#

Represents a message from the assistant.

System = 'system'#

Represents a system-generated message.

User = 'user'#

Represents a message from the user.