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.
14 lines (13 loc) • 393 B
TypeScript
declare class Logger {
private static logFile;
private static timestamp;
constructor();
private static formatMessage;
private static writeToFile;
static info(...message: any[]): void;
static debug(...message: any[]): void;
static error(...message: any[]): void;
static warn(...message: any[]): void;
}
export declare const logger: typeof Logger;
export {};