feat(profiles,eval): unify 14px profiles and add 300k/1M LIM reasoning benchmark - #249
Open
teamchong wants to merge 4 commits into
Open
feat(profiles,eval): unify 14px profiles and add 300k/1M LIM reasoning benchmark#249teamchong wants to merge 4 commits into
teamchong wants to merge 4 commits into
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR unifies all 14px model profiles across pxpipe and introduces an empirical Lost-in-the-Middle (LIM) & Effective Context Window Reasoning Benchmark comparing Raw Text vs. pxpipe Visual Context at 300k and 1,000,000 characters on Gemini 3.6 Flash and Gemini 3.7 Flash.
1. Unified 14px Profile Architecture
DEFAULT_EXPORT_COLS = 172without module-loadresolveGptProfileruntime evaluation.NATIVE_14PX_HISTORY: Unified history policy across Sol, Grok, and Qwen (keepTail: 1,minCollapsePrefix: 1,collapseChunk: 1,freezeChunk: 1,responsesMode: 'mixed',framing: 'compact',factSheetScope: 'combined').tests/grok.test.ts,tests/qwen.test.ts), keepingtests/openai-gpt5.test.tsGPT-specific.2. Lost-in-the-Middle (LIM) Benchmark: Gemini 3.7 Flash vs. Gemini 3.6 Flash
Task: Multi-hop causal disaster-recovery deduction across 30 turns of telemetry/log stream with distractor cluster state updates. Probes placed at 10%, 30%, 50% (middle), 70%, and 90% depth.
A. Gemini 3.7 Flash — 1,000,000 Characters (~407k Text Tokens vs ~103k Total Tokens with 32 Images)
B. Gemini 3.7 Flash — 300,000 Characters (~123k Text Tokens vs ~21k Vision Tokens)
3. Key Findings
Verification
All 77 unit test suites (1,203 tests) pass cleanly.