UNPKG

@lewist9x/distil

Version:

An opinionated library for managing LLM pipelines. Define, track, rate, and curate prompt–completion pairs for fine-tuning.

30 lines (29 loc) • 560 B
export declare const config: { elastic: { host: string; user: string; password: string; dataIndex: string; logIndex: string; }; openLLM: { apiKey: string; baseUrl: string; }; openai: { apiKey: string; baseUrl: string; finetune: { enabled: boolean; endpoint: string; }; }; costPerToken: number; retry: { retries: number; delay: number; }; dashboard: { port: string | number; }; };