UNPKG

ai-pp3

Version:

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

13 lines 411 B
/** * Centralized AI provider configuration and error handling */ import { provider } from "../provider.js"; export function handleProviderSetup(providerName, model) { try { return provider(providerName)(model); } catch (error) { throw new Error(`AI configuration error: ${error instanceof Error ? error.message : "Unknown error"}`); } } //# sourceMappingURL=ai-provider.js.map