Interface ChatVisionMessage

ChatVisionMessage represents content for the vision call.

interface ChatVisionMessage {
    content: string;
    output: string;
    role: Roles;
}

Properties

Properties

content: string

content represents the response for this message.

output: string

output represents the output for this message.

role: Roles

role represents the role of the sender (user or assistant).