feat(desktop): add shared models to Share compute#1943
Draft
michaelneale wants to merge 1 commit into
Draft
Conversation
Add a shared-model path to Settings → Compute → Share compute alongside the existing solo flow, and restructure the card into Recommended (the common path) + Advanced (free-text solo serve, installed picklist, Max VRAM, and a new 'Join a shared model' section). Shared models are curated meshllm/…-layers layer packages too big for one machine. Selecting one serves it via the existing mesh_start_node path; the mesh runtime implicitly splits it (model doesn't fit locally) and waits for a quorum of members before serving. Status is cohort-aware but coarse by design (built on today's SDK state): 'waiting for more members' vs 'running with the group' — a precise 'X of N members' progress is a future enhancement gated on an upstream mesh-llm status field. No mesh-llm SDK changes; works against pinned v0.73.1. - catalog.rs: SharedModel list, estimate_members, shared/estimated_members fields + shared list on the catalog (+ tests, 7/7 pass) - tauriMesh.ts: MeshCatalogEntry.shared/.estimatedMembers, catalog.shared - MeshComputeSettingsCard.tsx: Recommended + Advanced restructure, SharedModelPicker, cohort-aware StatusLine, honest slower-than-solo warning - sharedModel.ts (+ 9 tests): isSharedModelRef, sharedModelShortName - e2eBridge.ts: mock mesh_model_catalog incl. shared[]; shared models hold in 'starting' to simulate waiting-for-quorum - mesh-compute e2e specs updated + shared-model test added (2 pass) - docs/mesh-share-compute-shared-models.md Signed-off-by: Michael Neale <michael.neale@gmail.com>
michaelneale
force-pushed
the
micn/mesh-share-compute-shared-models
branch
from
July 16, 2026 05:38
f2d48df to
df9d0a4
Compare
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.
The idea here is to show curated models, and an advanced section where people can choose to run really large model - then things "wait" until enough members share compute in a buzz server community.
Then ... magic happens!
not a core functionality change more just making it clearer to buzz consumers what mesh llm can do.
Summary
This carries the single feature commit from
michaelneale/buzz:feat/mesh-share-compute-shared-modelsonto currentblock/buzzmain.Behavior and scope
meshllm/*-layersmodel referencesThe implementation notes and current limitations are in
docs/mesh-share-compute-shared-models.md.Verification
just ci— passedpnpm exec playwright test --project=smoke tests/e2e/mesh-compute.spec.ts tests/e2e/mesh-compute-screenshots.spec.ts— 3 passed