evalite
Version:
Test your LLM-powered apps with a TypeScript-native, Vitest-based eval runner. No API key required.
19 lines • 764 B
TypeScript
type ProgramOpts = {
path: string | undefined;
threshold: number | undefined;
outputPath: string | undefined;
hideTable: boolean | undefined;
};
export declare const createProgram: (commands: {
watch: (opts: ProgramOpts) => void;
runOnceAtPath: (opts: ProgramOpts) => void;
serve: (opts: ProgramOpts) => void;
export: (opts: {
output: string | undefined;
runId: number | undefined;
basePath: string | undefined;
}) => void;
}) => import("@stricli/core").Application<import("@stricli/auto-complete").StricliAutoCompleteContext>;
export declare const program: import("@stricli/core").Application<import("@stricli/auto-complete").StricliAutoCompleteContext>;
export {};
//# sourceMappingURL=command.d.ts.map