@dypai-ai/client-sdk - v1.12.0
    Preparing search index...

    Interface MessagePart

    A single content part in a message (Vercel AI SDK compatible format)

    interface MessagePart {
        args?: any;
        data?: string;
        image?: string;
        mediaType?: string;
        result?: any;
        text?: string;
        toolName?: string;
        type: "text" | "tool-call" | "tool-result" | "image" | "file";
    }
    Index

    Properties

    args?: any
    data?: string
    image?: string
    mediaType?: string
    result?: any
    text?: string
    toolName?: string
    type: "text" | "tool-call" | "tool-result" | "image" | "file"