@rishabhbothra/imagery
    Preparing search index...

    Interface ImageModelInfo

    interface ImageModelInfo {
        aliases?: string[];
        displayName: string;
        family: "mock" | "openai-gpt-image" | "google-gemini-image";
        id: string;
        inputTokenLimit?: number;
        lastUpdated: string;
        maxInputBytes?: number;
        maxInputImages?: number;
        maxOutputImages?: number;
        operations: ImageOperation[];
        outputTokenLimit?: number;
        pricing?: ImagePricing;
        provider: ImageProvider;
        releaseStage?: "preview" | "stable";
        sourceUrl: string;
        supportedAspectRatios?: string[];
        supportedOutputFormats: ImageOutputFormat[];
        supportedSizes?: `${number}x${number}`[];
        supportsMasks: boolean;
        supportsMultipleReferenceImages: boolean;
        supportsReferenceImages: boolean;
        supportsSemanticInpaint: boolean;
        supportsStreaming: boolean;
        supportsTransparentBackground: boolean;
    }
    Index

    Properties

    aliases?: string[]
    displayName: string
    family: "mock" | "openai-gpt-image" | "google-gemini-image"
    id: string
    inputTokenLimit?: number
    lastUpdated: string
    maxInputBytes?: number
    maxInputImages?: number
    maxOutputImages?: number
    operations: ImageOperation[]
    outputTokenLimit?: number
    pricing?: ImagePricing
    provider: ImageProvider
    releaseStage?: "preview" | "stable"
    sourceUrl: string
    supportedAspectRatios?: string[]
    supportedOutputFormats: ImageOutputFormat[]
    supportedSizes?: `${number}x${number}`[]
    supportsMasks: boolean
    supportsMultipleReferenceImages: boolean
    supportsReferenceImages: boolean
    supportsSemanticInpaint: boolean
    supportsStreaming: boolean
    supportsTransparentBackground: boolean