UNPKG

evalite

Version:

Test your LLM-powered apps with a TypeScript-native, Vitest-based eval runner. No API key required.

14 lines 405 B
import { Writable } from "stream"; declare module "vitest" { interface ProvidedContext { cwd: string; } } export declare const runVitest: (opts: { path: string | undefined; cwd: string | undefined; testOutputWritable?: Writable; mode: "watch-for-file-changes" | "run-once-and-exit"; scoreThreshold?: number; }) => Promise<void>; //# sourceMappingURL=run-vitest.d.ts.map