n8n-nodes-pdf-accessibility
Version:
AI-powered PDF accessibility automation for N8N - comprehensive WCAG compliance analysis, intelligent remediation, and professional audit reporting with 5 integrated accessibility tools
8 lines (7 loc) • 414 B
TypeScript
import { ILLMProvider, IProviderCredentials } from './base';
export type LLMProviderType = 'anthropic' | 'openai' | 'google' | 'custom';
export declare class LLMProviderFactory {
static createProvider(providerType: LLMProviderType, credentials: IProviderCredentials): ILLMProvider;
static getSupportedProviders(): LLMProviderType[];
static getProviderModels(providerType: LLMProviderType): string[];
}