* Eval view — renders the committed parsing-accuracy benchmark results as-is. * * Data source: playground/eval/history/bench-*.json, imported eagerly via * import.meta.glob. Each future round commits a new bench-NNN.json (+ updates * benchmark-scoreboard.md); once that PR merges and the playgrou
| 14 | * the new round appears here automatically — no code change needed. |
| 15 | */ |
| 16 | interface PerItem { |
| 17 | id: string; |
| 18 | source: string; |
| 19 | chapter: string | null; |
| 20 | jp: string; |
| 21 | total: number; |
| 22 | verdict: "conforms" | "needs-work"; |
| 23 | issueCount: number; |
| 24 | } |
| 25 | interface Proposal { |
| 26 | target: "ts-def" | "prompt" | "content"; |
| 27 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected