claudius-chat-widget
    Preparing search index...

    Interface ChatResponse

    Successful response body from POST /api/chat.

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

    Hierarchy (View Summary)

    Index

    Properties

    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.