-
Notifications
You must be signed in to change notification settings - Fork 0
Revamp showcase to deterministic replay UI and static artifact validation #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ProfRandom92
merged 1 commit into
main
from
codex/create-focused-showcase/dashboard-pr-mng2hi
May 14, 2026
+455
−594
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| export const repoBaseUrl = 'https://github.com/ProfRandom92/Comptextv7/blob/main/'; | ||
|
ProfRandom92 marked this conversation as resolved.
|
||
|
|
||
| export type BenchmarkMetric = { | ||
| label: string; | ||
| value: string; | ||
| detail?: string; | ||
| }; | ||
|
|
||
| export type BenchmarkArtifact = { | ||
| title: string; | ||
| benchmark: string; | ||
| artifactPath: string; | ||
| methodPath: string; | ||
| badges: string[]; | ||
| note: string; | ||
| metrics: BenchmarkMetric[]; | ||
| }; | ||
|
|
||
| // Static dashboard values copied from committed deterministic replay artifacts: | ||
| // - artifacts/paper_replay_results.json | ||
| // - artifacts/agent_trace_replay_results.json | ||
| // Keep these values in sync with committed artifact JSON; do not replace them with | ||
| // generated, model-judged, or externally fetched metrics. | ||
| export const benchmarkArtifacts: BenchmarkArtifact[] = [ | ||
| { | ||
| title: 'Paper Replay Benchmark', | ||
| benchmark: 'paper_replay_bench', | ||
| artifactPath: 'artifacts/paper_replay_results.json', | ||
| methodPath: 'docs/benchmarks/paper_replay.md', | ||
| badges: ['Deterministic', 'No LLM judging'], | ||
| note: 'Dense technical paper fixtures preserve entities, limitations, metrics, and section structure with measurable replay loss.', | ||
| metrics: [ | ||
| { label: 'Paper count', value: '3', detail: 'dense technical papers' }, | ||
| { label: 'Avg compression ratio', value: '1.347063', detail: 'original ÷ compact tokens' }, | ||
| { label: 'Replay consistency', value: '0.791667', detail: 'deterministic validator' } | ||
| ] | ||
| }, | ||
| { | ||
| title: 'Agent Trace Replay Benchmark', | ||
| benchmark: 'agent_trace_replay_bench', | ||
| artifactPath: 'artifacts/agent_trace_replay_results.json', | ||
| methodPath: 'docs/benchmarks/agent_trace_replay.md', | ||
| badges: ['Deterministic', 'Structured fixture baseline'], | ||
| note: 'Agent trace replay is currently near-lossless because fixtures are structured; iterative degradation pressure is the next validation target.', | ||
| metrics: [ | ||
| { label: 'Trace count', value: '3', detail: 'multi-step workflows' }, | ||
| { label: 'Avg compression ratio', value: '1.773954', detail: 'original ÷ compact tokens' }, | ||
| { label: 'Replay consistency', value: '1.000000', detail: 'deterministic validator' }, | ||
| { label: 'Operational drift', value: '0.000000', detail: 'required field loss' } | ||
| ] | ||
| } | ||
| ]; | ||
|
|
||
| export const artifactLinks = [ | ||
| 'artifacts/paper_replay_results.json', | ||
| 'artifacts/agent_trace_replay_results.json', | ||
| 'reports/replay_continuity/validation_report.md', | ||
| 'docs/benchmarks/paper_replay.md', | ||
| 'docs/benchmarks/agent_trace_replay.md' | ||
| ]; | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.