Creating Plot Twists
    Preparing search index...

    Type Alias AIUserMessage

    A user message. It can contain text or a combination of text and images.

    type AIUserMessage = {
        role: "user";
        content: string | (TextPart | ImagePart | FilePart)[];
    }
    Index

    Properties

    Properties

    role: "user"
    content: string | (TextPart | ImagePart | FilePart)[]