mirror of
https://github.com/cline/cline.git
synced 2026-09-19 10:13:34 +08:00
* cleaning up a bit * cleaning up some more * readme * added max limit * making it portable * ignore * committing plans for now * strealit hooked up, multi model runs, better db torage * docs * VALID attempts * logging * more stability * strategy * cleaning deps * docs * streamlit dashboard work * dashboard showing bad cases * better parallelization pt1 * global worker pool for even better more robust parallelization * bumping up default max parallel requests from 20 -> 80 * better devx * better docs * docs * better devx * better docs * better presentation * dark mode * removed unused import --------- Co-authored-by: Cline Evaluation <cline@example.com>
24 lines
511 B
TypeScript
24 lines
511 B
TypeScript
// Main database module exports
|
|
export { DatabaseClient, getDatabase } from './client';
|
|
export * from './types';
|
|
export * from './operations';
|
|
export * from './queries';
|
|
|
|
// Re-export commonly used functions for convenience
|
|
export {
|
|
upsertSystemPrompt,
|
|
upsertProcessingFunctions,
|
|
upsertFile,
|
|
createBenchmarkRun,
|
|
createCase,
|
|
insertResult,
|
|
getRunStats
|
|
} from './operations';
|
|
|
|
export {
|
|
getSuccessRatesByModel,
|
|
getModelComparisons,
|
|
getDatabaseSummary,
|
|
getErrorDistribution
|
|
} from './queries';
|