@airbolt/sdk
    Preparing search index...

    Interface StreamChunk

    Streaming response chunk

    interface StreamChunk {
        content: string;
        type: "chunk" | "done" | "error";
        usage?: UsageInfo;
    }
    Index

    Properties

    Properties

    content: string

    Content chunk from the assistant

    type: "chunk" | "done" | "error"

    Type of chunk

    usage?: UsageInfo

    Usage information (only present in 'done' chunks)