UNPKG

ai-pp3

Version:

CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography

21 lines (20 loc) 513 B
#!/usr/bin/env node interface ProcessImageOptions { output?: string; pp3Only?: boolean; provider?: string; model?: string; verbose?: boolean; keepPreview?: boolean; quality?: number; prompt?: string; base?: string; sections?: string; tiff?: boolean; png?: boolean; compression?: "z" | "none"; bitDepth?: 8 | 16; previewQuality?: number; } export declare function processImage(inputPath: string, options?: ProcessImageOptions): Promise<void>; export {};