@squidcloud/client
    Preparing search index...

    Interface UserAiAskResponse

    Response structure for asking a user LLM a question.

    interface UserAiAskResponse {
        inputTokens?: number;
        outputTokens?: number;
        response?: string;
    }
    Index

    Properties

    inputTokens?: number

    The number of input tokens used in the request.

    outputTokens?: number

    The number of output tokens generated by the AI agent.

    response?: string

    The response from the AI agent.