index.ts 511 B

1234567891011121314151617181920212223
  1. // Main database module exports
  2. export { DatabaseClient, getDatabase } from './client';
  3. export * from './types';
  4. export * from './operations';
  5. export * from './queries';
  6. // Re-export commonly used functions for convenience
  7. export {
  8. upsertSystemPrompt,
  9. upsertProcessingFunctions,
  10. upsertFile,
  11. createBenchmarkRun,
  12. createCase,
  13. insertResult,
  14. getRunStats
  15. } from './operations';
  16. export {
  17. getSuccessRatesByModel,
  18. getModelComparisons,
  19. getDatabaseSummary,
  20. getErrorDistribution
  21. } from './queries';