evalite
Version:
Test your LLM-powered apps with a TypeScript-native, Vitest-based eval runner. No API key required.
17 lines • 594 B
TypeScript
import type { Evalite } from "./types.js";
/**
* Options for exporting static UI
*/
export interface ExportStaticOptions {
/** Storage instance for accessing evaluation data */
storage: Evalite.Storage;
/** Output directory path for the export */
outputPath: string;
/** Optional specific run ID to export (defaults to latest full run) */
runId?: number;
}
/**
* Exports the Evalite UI as a static bundle with pre-computed JSON files
*/
export declare const exportStaticUI: (options: ExportStaticOptions) => Promise<void>;
//# sourceMappingURL=export-static.d.ts.map