claudius-chat-widget
    Preparing search index...

    Interface ChatStreamResult

    Result of a completed or cancelled streaming chat request.

    interface ChatStreamResult {
        aborted?: boolean;
        attachments?: StoredAttachment[];
        reply: string;
        sources?: Source[];
        toolUses?: ToolUse[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    aborted?: boolean

    true when the caller cancelled the stream before it finished.

    attachments?: StoredAttachment[]

    Attachments the worker stored while handling this request, when any.

    reply: string

    The assistant's reply text.

    sources?: Source[]

    Sources the assistant cited, when any.

    toolUses?: ToolUse[]

    Tools the assistant called while producing the reply, when any.