UNPKG

@thecodingwhale/cv-processor

Version:

CV Processor to extract structured data from PDF resumes using TypeScript

7 lines (6 loc) 330 B
import { AIModelConfig, AIProvider } from '../types/AIProvider'; export type AIProviderType = 'gemini' | 'openai' | 'azure' | 'grok' | 'aws'; /** * Creates an AI provider instance based on the specified type and configuration */ export declare function createAIProvider(type: AIProviderType, config: AIModelConfig): AIProvider;