@rishabhbothra/imagery
    Preparing search index...

    Interface ImageProviderOptions

    interface ImageProviderOptions {
        google?: {
            allowLessRestrictiveSafetySettings?: boolean;
            imageSize?: "1K" | "2K" | "4K";
            raw?: Record<string, unknown>;
            responseModalities?: ("TEXT" | "IMAGE")[];
            safetySettings?: {
                category: GoogleSafetyCategory;
                threshold: GoogleSafetyThreshold;
            }[];
        };
        openai?: { moderation?: "auto"
        | "low"; raw?: Record<string, unknown> };
    }
    Index

    Properties

    Properties

    google?: {
        allowLessRestrictiveSafetySettings?: boolean;
        imageSize?: "1K" | "2K" | "4K";
        raw?: Record<string, unknown>;
        responseModalities?: ("TEXT" | "IMAGE")[];
        safetySettings?: {
            category: GoogleSafetyCategory;
            threshold: GoogleSafetyThreshold;
        }[];
    }
    openai?: { moderation?: "auto" | "low"; raw?: Record<string, unknown> }