Interface ChatCompletionSystemMessage

interface ChatCompletionSystemMessage {
    content: string;
    name?: string;
    role: "system";
}

Properties

Properties

content: string
name?: string
role: "system"