Initial benchmark suite: 8 graded models + cyberpunk dashboard generator

- prompts/: LFU cache exam + 5-pillar grading rubric
- outputs/: 8 model .py outputs (local + cloud baseline)
- data/benchmark_history.json: graded results (scores, metrics, bugs, patches)
- generate_dashboard.py: builds dashboard.html + pages/*.html from JSON
- Dockerfile + DEPLOY.md: Gitea→Coolify deploy (build-step, nginx static)
- .gitignore: generated HTML excluded (built on deploy)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-28 14:00:40 -07:00
co-authored by Claude
commit f0281f2878
17 changed files with 4363 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# --- Generated / build artifacts ---
# Dashboard HTML is generated by generate_dashboard.py from data/benchmark_history.json.
# Keep them OUT of git so the repo only holds source — the site regenerates on deploy.
# (If you'd rather commit the built HTML instead, comment out these lines.)
/dashboard.html
/pages/
# /data/benchmark_history.json # <-- uncomment to keep history local-only too
# --- Scratch / previews / tooling ---
*.png
/playwright-mcp/
/.playwright-mcp/
__pycache__/
*.pyc
.DS_Store
# --- Local env ---
.env
.env.*
*.local