@conciergus/chat - v0.3.1
    Preparing search index...

    Interface EnhancedStreamPart

    Enhanced stream part interface with comprehensive type safety

    interface EnhancedStreamPart {
        type: StreamPartType;
        textDelta?: string;
        reasoning?: string;
        signature?: string;
        data?: string;
        source?: Source;
        base64?: string;
        uint8Array?: Uint8Array;
        mimeType?: string;
        fileName?: string;
        fileSize?: number;
        toolCallId?: string;
        toolName?: string;
        args?: any;
        argsTextDelta?: string;
        result?: any;
        stepId?: string;
        stepName?: string;
        input?: any;
        output?: any;
        finishReason?: string;
        usage?: TokenUsage;
        error?: Error;
        metadata?: Record<string, any>;
        objectType?: string;
        object?: any;
        objectDelta?: any;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional fields for future stream types

    Index

    Properties

    Stream part type

    textDelta?: string

    Incremental text content

    reasoning?: string

    Reasoning content

    signature?: string

    Reasoning step signature

    data?: string

    Redacted reasoning data

    source?: Source

    Source citation information

    base64?: string

    Base64 encoded file data

    uint8Array?: Uint8Array

    Binary file data

    mimeType?: string

    File MIME type

    fileName?: string

    File name

    fileSize?: number

    File size in bytes

    toolCallId?: string

    Tool call identifier

    toolName?: string

    Tool name

    args?: any

    Tool arguments

    argsTextDelta?: string

    Incremental tool arguments

    result?: any

    Tool execution result

    stepId?: string

    Step identifier

    stepName?: string

    Step name

    input?: any

    Step input data

    output?: any

    Step output data

    finishReason?: string

    Finish reason

    usage?: TokenUsage

    Token usage statistics

    error?: Error

    Error information

    metadata?: Record<string, any>

    Additional metadata

    objectType?: string

    Object type for structured streaming

    object?: any

    Object data

    objectDelta?: any

    Object delta for incremental updates