Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d64e978
feat(queue): add --republish to replace existing layer packages
Sep 9, 2026
7f925f7
fix(model-package): accept descriptor-only GGUF shards and stage pack…
Sep 9, 2026
adc389e
fix(model-package): re-create the package workspace before the root-F…
Sep 9, 2026
35e393c
fix(model-package): upload payload artifacts as they are verified
Sep 10, 2026
d28ff8f
chore(xtask): regenerate console print ratchet for package_v2 line moves
Sep 10, 2026
227f769
feat(queue): add --exclude-repo to quarantine broken sources
Sep 10, 2026
66d9b11
fix(queue): initialize exclude_repos in the job-plan test
Sep 10, 2026
fff94de
chore(xtask): regenerate console print ratchet after queue tool line …
Sep 10, 2026
dcbcf77
fix(queue): make --republish idempotent and extract the skip policy
Sep 10, 2026
6111692
chore(xtask): regenerate console print ratchet for queue tool line moves
Sep 10, 2026
8734d9f
fix(queue): tolerate missing target repo when clearing failure markers
Sep 10, 2026
f715cdb
fix(model-package): ride out sustained Xet upload outages with 8-atte…
Sep 10, 2026
6e0f0ed
fix(skippy-model-package): treat hook-deleted artifacts as unchanged …
Sep 10, 2026
f2446f6
fix(model-package): retry raw-SHA fetch in split job
Sep 10, 2026
cf02a6f
fix(model-package): stage package artifacts and Xet cache on local SSD
Sep 10, 2026
1a28147
fix(model-package): default split jobs to the HTTP upload path
Sep 10, 2026
290c0ec
fix(skippy): consume merge parts to fit HF Jobs ephemeral budget
Sep 11, 2026
96f35bf
fix(skippy): drop zero-element tensors from native inventory cross-check
Sep 12, 2026
509155a
fix(package): publish replacements atomically
Sep 12, 2026
bd36e55
feat(package): split oversized layers into byte-balanced part artifacts
Sep 13, 2026
7209cb5
fix(ci): authorize runtime gate model cadences
Sep 13, 2026
4091dad
fix(ci): share runtime event evidence path
Sep 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion crates/mesh-llm-host-runtime/src/inference/skippy/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,12 @@ pub(crate) fn direct_gguf_planning_manifest_from_identity(
let native = skippy_runtime::ModelInfo::open(path)
.with_context(|| format!("open direct GGUF metadata {}", path.display()))?
.tensors()
.with_context(|| format!("read direct GGUF tensors {}", path.display()))?;
.with_context(|| format!("read direct GGUF tensors {}", path.display()))?
.into_iter()
// Zero-element placeholders are skipped by the GGUF catalog
// reader; drop them from the native side so counts agree.
.filter(|tensor| tensor.element_count > 0)
.collect::<Vec<_>>();
let shard_tensors = direct_planning_tensor_catalog(&directory, &native, &artifact_id)?;
total_tensors = total_tensors
.checked_add(shard_tensors.entries.len())
Expand Down
Loading
Loading