The definition of a system message.

interface TextChatMessagesTextChatMessageSystem {
    content: string;
    name?: string;
    role: string;
}

Hierarchy (view full)

Properties

Properties

content: string

The contents of the system message.

name?: string

An optional name for the participant. Provides the model information to differentiate between participants of the same role.

role: string

The role of the messages author.