Skip to content
Merged
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
25 changes: 21 additions & 4 deletions mcp/trajectory-server/dist/db.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mcp/trajectory-server/dist/db.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions mcp/trajectory-server/dist/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ CREATE TABLE IF NOT EXISTS eval_results (
value TEXT, -- numeric or categorical detail
explanation TEXT, -- why pass/fail
metadata_json TEXT NOT NULL DEFAULT '{}',
-- A/B prompt-eval columns (#131). Default 'control' so existing single-arm
-- L5 dogfood runs continue to work unchanged. A/B scenarios set arm to
-- 'A' / 'B' / etc. and scenario to a stable identifier (e.g. 'claude-md-slim').
arm TEXT NOT NULL DEFAULT 'control',
scenario TEXT,
created_at TEXT NOT NULL DEFAULT (datetime('now'))
);

Expand Down
17 changes: 17 additions & 0 deletions mcp/trajectory-server/dist/test/schema.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading