add deterministic pilot benchmarks

This commit is contained in:
Marco0300
2026-09-03 12:50:00 +02:00
parent 6b41d5b9ee
commit 9622f76977
11 changed files with 763 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Prospect Platform Phase 16 benchmark report",
"type": "object",
"required": ["benchmark", "version", "offline", "limitations", "acceptance_thresholds", "results", "checks", "passed"],
"properties": {
"benchmark": {"const": "phase16"},
"version": {"type": "integer", "const": 1},
"offline": {"const": true},
"limitations": {"type": "array", "items": {"type": "string"}},
"acceptance_thresholds": {"type": "object"},
"results": {"type": "object"},
"checks": {"type": "object"},
"passed": {"type": "boolean"}
}
}