@squidcloud/client
    Preparing search index...

    Interface AiFileUrl

    Represents a URL reference to an AI-processed file, such as an image.

    interface AiFileUrl {
        description?: string;
        fileName?: string;
        id: string;
        purpose: AiFilePurpose;
        type: AiFileUrlType;
        url: string;
    }
    Index

    Properties

    description?: string

    An optional description of the file's content or purpose - sent to the AI.

    fileName?: string

    The file name, can be used in the prompt to reference the file.

    id: string

    The unique identifier for the file URL for the current request.

    purpose: AiFilePurpose

    The purpose of the file, indicating how it will be used in AI processing.

    The type of file referenced by the URL (e.g., 'image').

    url: string

    The URL pointing to the file.