@skeel/launcher
    Preparing search index...

    Type Alias CreateChatOptions

    Options for ISkeel.createChat.

    type CreateChatOptions = {
        agentId?: string;
        expiration?: number;
        operationMode?: OperationMode;
        promptId?: string;
        title?: string;
    }
    Index
    agentId?: string

    Published agent public ID to apply to chat requests.

    expiration?: number

    Hours until the chat expires. Omit to create a persistent chat (authenticated users only).

    operationMode?: OperationMode

    Operation mode for the chat. Omit to use the bound agent's mode, or direct if no agent is set.

    promptId?: string

    Published prompt public ID to apply to chat requests.

    title?: string