@squidcloud/client
    Preparing search index...

    Interface AiStatusMessage

    A status message from an AI agent operation.

    interface AiStatusMessage {
        agentId: string;
        chatId?: string;
        tags?: Record<string, any>;
        title: string;
    }
    Index

    Properties

    agentId: string

    The ID of the agent generating the status message.

    chatId?: string

    An optional chat ID associated with the status message.

    tags?: Record<string, any>

    Optional tags providing additional metadata about the status.

    title: string

    The title or summary of the status message.