-
-
Notifications
You must be signed in to change notification settings - Fork 419
feat(skippy): add Poolside Laguna staged-runtime candidate #1095
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
Closed
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
216ef8c
feat(skippy): add Laguna staged runtime candidate
michaelneale 2c56bf9
fix(models): preserve HF source revision in package jobs
michaelneale d94cc29
docs(skippy): record Laguna package certification
michaelneale 8ea8b44
docs(skippy): record Laguna M5 parity
michaelneale 226fb58
test(skippy): certify Laguna three-stage parity
michaelneale 18b2128
docs(skippy): record Laguna distributed serving smoke
michaelneale 6bd11c5
Merge remote-tracking branch 'origin/main' into feat/laguna-certifica…
michaelneale c408451
docs(skippy): record real Laguna mesh evidence
michaelneale 7512430
fix(skippy): make stage memory truly layer-local
michaelneale a2e0d65
fix(skippy): clean partial prefix restores
michaelneale 25727d9
fix(skippy): cancel timed out nonstream generation
michaelneale 28afde2
skippy: recover hybrid verify windows without full KV copy
michaelneale c21ccdd
skippy: reclaim stage lanes after mid-request errors
michaelneale 505cb97
refactor(skippy): isolate binary connection session tracking
michaelneale 1fc4bb9
Merge common hybrid verify recovery into Laguna certification
michaelneale 1d3ee4a
skippy: trim interleaved-SWA KV sessions
michaelneale 181360e
Merge interleaved-SWA trim recovery into Laguna certification
michaelneale 28e66d1
fix(packaging): preserve source revisions
michaelneale 624fc7b
feat(skippy): honor package verification depth
michaelneale 6ee8533
test(skippy): assert Laguna cache policy
michaelneale 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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Preserve the selected revision in list output.
The quants are now discovered at the requested revision, but the follow-up example still emits
repo:quant, and JSON omits the revision. Copying that example can package a different commit. Use the existingrepo@revision:quantform and includesourceRevisionin JSON.Proposed fix
serde_json::to_string_pretty(&json!({ "sourceRepo": source_repo, + "sourceRevision": source_revision, "quants": quants, }))? - eprintln!(" mesh-llm models package {}:{}", source_repo, quants[0].name); + let source_ref = source_revision + .map(|revision| format!("{source_repo}@{revision}:{}", quants[0].name)) + .unwrap_or_else(|| format!("{source_repo}:{}", quants[0].name)); + eprintln!(" mesh-llm models package {source_ref}");Also applies to: 256-262
🤖 Prompt for AI Agents