@squidcloud/backend
    Preparing search index...

    Interface AiFunctionResponseWithFiles

    Represents an AI function response that also includes files.

    interface AiFunctionResponseWithFiles {
        __isAiFunctionResponseWithFiles: true;
        files: AiFileUrl[];
        response: any;
    }
    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: any

    The response from the AI function.