Views
No views yet
| Run locally | Pool multiple machines | OpenAI-compatible | Package variant |
|---|---|---|---|
| Private inference on your hardware | Split layers across peers | Serve /v1/chat/completions locally | UD-Q4_K_XL layer package |
| Property | Value |
|---|---|
| Source model | unsloth/gpt-oss-120b-GGUF |
| Model id | unsloth/gpt-oss-120b-GGUF:UD-Q4_K_XL |
| Family | gpt |
| Parameter scale | 120b |
| Quantization | UD-Q4_K_XL |
| Layer count | 36 |
| Activation width | 2880 |
| Package size | 59.1 GB |
| Source file | UD-Q4_K_XL/gpt-oss-120b-UD-Q4_K_XL-00001-of-00002.gguf |
| Package repo | meshllm/gpt-oss-120b-UD-Q4_K_XL-layers |
1# Run this on each machine that should contribute memory/compute.
2mesh-llm serve --model "meshllm/gpt-oss-120b-UD-Q4_K_XL-layers" --split1# Check the mesh and discover the OpenAI-compatible model name.
2curl -s http://localhost:3131/api/status
3curl -s http://localhost:3131/v1/models1# Send an OpenAI-compatible chat request.
2curl -s http://localhost:3131/v1/chat/completions \
3 -H "Content-Type: application/json" \
4 -d '{
5 "model": "unsloth/gpt-oss-120b-GGUF:UD-Q4_K_XL",
6 "messages": [{"role": "user", "content": "Write a tiny hello-world function in Rust."}],
7 "max_tokens": 128
8 }'| Property | Value |
|---|---|
| Format | layer-package |
| Canonical source ref | unsloth/gpt-oss-120b-GGUF@main/UD-Q4_K_XL/gpt-oss-120b-UD-Q4_K_XL-00001-of-00002.gguf |
| Source revision | main |
| Source SHA-256 | c7b59d68c889ada280736d9b82685baeb6152f4d7423a169a369bb3492b3056e |
| Skippy ABI | 0.1.24 |
| Package manifest SHA-256 | 519f456cb7650706e38291b82971dca497f4e05ffa9f5b230c3caea110758d11 |
| Artifact | Path | Contents | SHA-256 |
|---|---|---|---|
| Manifest | model-package.json | Package schema, source identity, checksums | 519f456cb7650706e38291b82971dca497f4e05ffa9f5b230c3caea110758d11 |
| Metadata | shared/metadata.gguf | 0 tensors, 12.4 MB | 6a0f32e8d00ca657b53dd8259d811f09cd6cb478cce8efcb40b33d2957e3c524 |
| Embeddings | shared/embeddings.gguf | 1 tensors, 599.2 MB | 1538f27cb2f5e3bd86a2ce1c2d54db2ace3e3d903f15c9150010bc01f925be43 |
| Output head | shared/output.gguf | 2 tensors, 599.2 MB | d1802f164b8f90c0ab4f9c95c4952582ef8074951963ba4a30d4dab635c5423f |
| Transformer layers | layers/layer-*.gguf | 36 layer artifacts, 684 tensors, 58.0 GB | see model-package.json |
mesh-llm ref main.
Each artifact is checksummed as it is written, uploaded to this repository, and removed from the job workspace before the next artifact is produced.skippy-model-package write-package "/source/UD-Q4_K_XL/gpt-oss-120b-UD-Q4_K_XL-00001-of-00002.gguf" --out-dir "/tmp/meshllm-layer-job-meshllm_gpt-oss-120b-UD-Q4_K_XL-layers-197/package"