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

    Interface StreamingState

    Streaming state management interface

    interface StreamingState {
        isStreaming: boolean;
        streamingType: StreamingType;
        progress: number;
        tokenCount: number;
        currentText: string;
        reasoning: ReasoningStep[];
        sources: Source[];
        metadata: Record<string, any>;
        toolCalls: ToolCall[];
        errors: Error[];
        objects: StructuredObject[];
    }
    Index

    Properties

    isStreaming: boolean

    Whether streaming is currently active

    streamingType: StreamingType

    Type of content being streamed

    progress: number

    Streaming progress (0-100)

    tokenCount: number

    Current token count

    currentText: string

    Accumulated text content

    reasoning: ReasoningStep[]

    Reasoning steps

    sources: Source[]

    Source citations

    metadata: Record<string, any>

    Metadata information

    toolCalls: ToolCall[]

    Active tool calls

    errors: Error[]

    Streaming errors

    objects: StructuredObject[]

    Structured objects