Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
1,721 changes: 0 additions & 1,721 deletions ARCHITECTURE.md

This file was deleted.

907 changes: 0 additions & 907 deletions BENCHMARK_EXECUTION_FLOW.md

This file was deleted.

16 changes: 16 additions & 0 deletions apps/worker/drizzle/0002_chemical_magik.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
CREATE TABLE `human_scores` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`run_id` text NOT NULL,
`scorer_name` text NOT NULL,
`scorer_email` text,
`scores` text NOT NULL,
`overall_score` real NOT NULL,
`time_spent_seconds` integer,
`notes` text,
`metadata` text,
`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,
FOREIGN KEY (`run_id`) REFERENCES `benchmark_runs`(`run_id`) ON UPDATE no action ON DELETE no action
);
--> statement-breakpoint
CREATE INDEX `idx_human_scores_run_id` ON `human_scores` (`run_id`);--> statement-breakpoint
CREATE INDEX `idx_human_scores_created_at` ON `human_scores` (`created_at`);
1 change: 1 addition & 0 deletions apps/worker/drizzle/0003_drop_human_scores.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP TABLE IF EXISTS `human_scores`;
2 changes: 2 additions & 0 deletions apps/worker/drizzle/0004_early_ozymandias.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE `benchmark_runs` ADD `specialist_name` text;--> statement-breakpoint
ALTER TABLE `benchmark_runs` ADD `specialist_version` text;
Loading
Loading