UNPKG

llmforge

Version:

One API, every AI model, instant switching. Change from GPT-4 to Gemini to local models with a single config update. LLMForge is the lightweight, TypeScript-first solution for multi-provider AI applications with zero vendor lock-in.

7 lines (6 loc) 164 B
import { LLMConfig } from '../types'; export declare class Factory { private readonly config; constructor(config: LLMConfig); create(): Promise<any>; }