ai-pp3
Version:
CLI tool combining multimodal AI analysis with RawTherapee's engine to generate optimized PP3 profiles for RAW photography
13 lines (12 loc) • 526 B
TypeScript
/**
* Centralized AI provider configuration and error handling
*/
/**
* Sets up the AI provider with the specified model
*
* @param providerName The name of the AI provider to use
* @param model A single model name or an array of model names
* @param modelIndex Optional index to use a specific model from the array (defaults to 0)
* @returns The configured AI provider
*/
export declare function handleProviderSetup(providerName: string, model: string | string[], modelIndex?: number): import("ai").LanguageModelV1;