fix(pixel-chat): validate sequence number type in chunk retrieval - #5733
Open
Vishaaallll wants to merge 1 commit into
Open
Vishaaallll wants to merge 1 commit into
Vishaaallll wants to merge 1 commit into
Conversation
Signed-off-by: Vishaaallll <Vishaaallll@users.noreply.github.com>
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.
Why this matters
In
ods/extensions/services/dashboard-api/pixel_chat_results.py,ChatResultStore.chunks(self, key, after=-1)bindsafterdirectly into a parameterized SQLsequence > ?condition. If an invalid type like a boolean (True/False), string, or float is passed, SQLite type coercion can cause unexpected comparison behavior or query failure.This surgical fix validates that
afteris strictly anint(and not a boolean subclass), raisingValueErroron malformed inputs.Validation
store.chunks(..., after=True)executed without parameter type validation.ValueError("after sequence must be an integer")on booleans, strings, or floats.pixel-chat suite: 2 passed. New-test syntax and diff checks pass; new regression wired into Linux CI.Overlap check
Inspected open/closed PRs. PR #5704 touched stream chunk parsing; zero overlap with SQLite sequence index queries.
Risk / AI disclosure
AI-assisted investigation, patch, and regression tests. Strictly guards query parameter types. Independent review remains a gate.
Follow-up integration evidence
Composed locally with public-beta at
4fa6ad170without conflicts. CI and unit checks pass.