@squidcloud/backend
    Preparing search index...

    Interface AiFunctionResponseWithFiles<ResponseType>

    Represents an AI function response that also includes files.

    interface AiFunctionResponseWithFiles<ResponseType = unknown> {
        __isAiFunctionResponseWithFiles: true;
        files: AiFileUrl[];
        response: ResponseType;
    }

    Type Parameters

    • ResponseType = unknown
    Index

    Properties

    __isAiFunctionResponseWithFiles: true

    Indicates that this is an AI function response with files.

    files: AiFileUrl[]

    Optional list of files associated with the response.

    response: ResponseType

    The response from the AI function.