Text Generation
GGUF
mesh-llm
layer-package
skippy
distributed-inference
local-inference
openai-compatible
imatrix
conversational
Instructions to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./llama-cli -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./build/bin/llama-cli -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Use Docker
docker model run hf.co/meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
- LM Studio
- Jan
- vLLM
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
- Ollama
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Ollama:
ollama run hf.co/meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
- Unsloth Studio
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers to start chatting
- Pi
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Docker Model Runner:
docker model run hf.co/meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
- Lemonade
How to use meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meshllm/North-Mini-Code-1.0-UD-Q4_K_XL-layers
Run and chat with the model
lemonade run user.North-Mini-Code-1.0-UD-Q4_K_XL-layers-{{QUANT_TAG}}List all available models
lemonade list
Add layer package manifest from unsloth/North-Mini-Code-1.0-GGUF (unsloth/North-Mini-Code-1.0-GGUF:UD-Q4_K_XL)
e98ddfb verified | { | |
| "schema_version": 1, | |
| "model_id": "unsloth/North-Mini-Code-1.0-GGUF:UD-Q4_K_XL", | |
| "source_model": { | |
| "path": "/source/North-Mini-Code-1.0-UD-Q4_K_XL.gguf", | |
| "sha256": "86ba9cf324a1cf53687872abdda3861e3304bfd25d1f606f92a6641017ecbc6e", | |
| "repo": "unsloth/North-Mini-Code-1.0-GGUF", | |
| "revision": "main", | |
| "primary_file": "North-Mini-Code-1.0-UD-Q4_K_XL.gguf", | |
| "canonical_ref": "unsloth/North-Mini-Code-1.0-GGUF@main/North-Mini-Code-1.0-UD-Q4_K_XL.gguf", | |
| "distribution_id": "North-Mini-Code-1.0-UD-Q4_K_XL", | |
| "files": [ | |
| { | |
| "path": "North-Mini-Code-1.0-UD-Q4_K_XL.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| } | |
| ] | |
| }, | |
| "format": "layer-package", | |
| "layer_count": 49, | |
| "activation_width": 2048, | |
| "shared": { | |
| "metadata": { | |
| "path": "shared/metadata.gguf", | |
| "tensor_count": 0, | |
| "tensor_bytes": 0, | |
| "artifact_bytes": 10399968, | |
| "sha256": "af1ec415f84bb9662b7423b527776f6cf19c1e9052304581d33af4c77ee217d0" | |
| }, | |
| "embeddings": { | |
| "path": "shared/embeddings.gguf", | |
| "tensor_count": 1, | |
| "tensor_bytes": 570425344, | |
| "artifact_bytes": 580825376, | |
| "sha256": "c259a1c768291b05b517aef227aebb09ab26eb92a400da5ec881a219ce09333e" | |
| }, | |
| "output": { | |
| "path": "shared/output.gguf", | |
| "tensor_count": 1, | |
| "tensor_bytes": 8192, | |
| "artifact_bytes": 10408192, | |
| "sha256": "734fb32e55296c4cbf9a6b890c0901cb46d6854fd62ca6ded43b3f4e6bf39e73" | |
| } | |
| }, | |
| "layers": [ | |
| { | |
| "layer_index": 0, | |
| "path": "layers/layer-000.gguf", | |
| "tensor_count": 8, | |
| "tensor_bytes": 40116224, | |
| "artifact_bytes": 50516672, | |
| "sha256": "fe422b23005313a2f60d3a24fad6345899e44710e38165978da35c0c2fed7a09" | |
| }, | |
| { | |
| "layer_index": 1, | |
| "path": "layers/layer-001.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "fddad281bbd2938d5e3aa13475e5d3033fe32cea3d330aa6645e7782b0c6763f" | |
| }, | |
| { | |
| "layer_index": 2, | |
| "path": "layers/layer-002.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "f5bbaf912381e6364b117a5af82041386bc03cc7a0c299589ddad6eafdd18588" | |
| }, | |
| { | |
| "layer_index": 3, | |
| "path": "layers/layer-003.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "8f2ad657100fda14a3f53bfcdb0aba6e77446e2465ffb91528829752132e4481" | |
| }, | |
| { | |
| "layer_index": 4, | |
| "path": "layers/layer-004.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "7b52be3f2bebfac0abc26c5a30f34da6dcaed972ae6756ba37795172b62656d4" | |
| }, | |
| { | |
| "layer_index": 5, | |
| "path": "layers/layer-005.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "57e731c562fb476acba9f632321f4b72576baf08e33172511e6f082d5aa86df2" | |
| }, | |
| { | |
| "layer_index": 6, | |
| "path": "layers/layer-006.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "e4d4b33c2fd0b50e16393e0afd34afe4a2173ecd06970a3c3864b3d83ff2c359" | |
| }, | |
| { | |
| "layer_index": 7, | |
| "path": "layers/layer-007.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "1d984a450f3e433afd44a1f079d165437ab4d832f2d7c6328156ad358e2a50aa" | |
| }, | |
| { | |
| "layer_index": 8, | |
| "path": "layers/layer-008.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "592d2133b0cfa7bf8e40e4aceaf427d2d3890fb1e8e3d0e4e9e34b91ed741f21" | |
| }, | |
| { | |
| "layer_index": 9, | |
| "path": "layers/layer-009.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "4aa1c41e91c465ca07aeca85d49d39d6a4c254d0f950622431bfb394d95a1138" | |
| }, | |
| { | |
| "layer_index": 10, | |
| "path": "layers/layer-010.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "ddb09beef8f356b7b63fe988c4665055a3b1abd75c2d444c3ab1bafb58658d43" | |
| }, | |
| { | |
| "layer_index": 11, | |
| "path": "layers/layer-011.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "682bdc7971703d3354e61d6107360e6078355275f0a879ab521b6ddd3036c16d" | |
| }, | |
| { | |
| "layer_index": 12, | |
| "path": "layers/layer-012.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "b94bc0a112747e9101cbc9566883655f017f87e0d66396cd34d0c2c578f2de4f" | |
| }, | |
| { | |
| "layer_index": 13, | |
| "path": "layers/layer-013.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "4345456593c3c888c336e31f04b411208042955d7e482afff7f2a5c578f9de85" | |
| }, | |
| { | |
| "layer_index": 14, | |
| "path": "layers/layer-014.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "cf086c4d956cd030a49896d2808e61f14afc5f455bd019661623e6350e710ebc" | |
| }, | |
| { | |
| "layer_index": 15, | |
| "path": "layers/layer-015.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "7049bf0bd9086d2aa6c722e2a3378c878ba208a4d9c4b406b55640e310770d95" | |
| }, | |
| { | |
| "layer_index": 16, | |
| "path": "layers/layer-016.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "c94b20ffd44e4887a00820a77d45328be81d365f3846d830f8a3d16878bcd519" | |
| }, | |
| { | |
| "layer_index": 17, | |
| "path": "layers/layer-017.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "f987fa73de36326a880c499762b8ec41b202fc481c80e689e262db5ffe229c5d" | |
| }, | |
| { | |
| "layer_index": 18, | |
| "path": "layers/layer-018.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "c069148424b0f3e59d1a431f839bc67a10ffe3b3cfca6cec83fffb45a15fa5b8" | |
| }, | |
| { | |
| "layer_index": 19, | |
| "path": "layers/layer-019.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "cf65dff70f7cc0f939a8bdabdb5479833fbd4a2b04feafbe9a7ba22a8fa57580" | |
| }, | |
| { | |
| "layer_index": 20, | |
| "path": "layers/layer-020.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "9d554c07f59c301480edf41acefa65cf3fb1c5d48a62a53ef9a665231f7c8c72" | |
| }, | |
| { | |
| "layer_index": 21, | |
| "path": "layers/layer-021.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "fa8fffddaf7150fde9aad360b68e3f34c709ab334f801a97905cb3534d609a63" | |
| }, | |
| { | |
| "layer_index": 22, | |
| "path": "layers/layer-022.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "ca6b1ff8942e51a2341881818c927369b619f1744d33697937aaebaef5ccebdc" | |
| }, | |
| { | |
| "layer_index": 23, | |
| "path": "layers/layer-023.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "ba15577db4de8cc8fd52f1a59e47a01f142965c500e8b35cfe7bc15d58c0d9aa" | |
| }, | |
| { | |
| "layer_index": 24, | |
| "path": "layers/layer-024.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 463085568, | |
| "artifact_bytes": 473486112, | |
| "sha256": "38846741f8cd77276a6cc5193cea84b07c4e293f50b4c10dd801662ded0575cb" | |
| }, | |
| { | |
| "layer_index": 25, | |
| "path": "layers/layer-025.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "a1af2a04962445b617798baf91f829c0562e0d7524806ab8c403e52407f2431f" | |
| }, | |
| { | |
| "layer_index": 26, | |
| "path": "layers/layer-026.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "03a83d1031c24fc110bc845db030bf5fb36a4c9e1bb436f4c6f1316af11a2b12" | |
| }, | |
| { | |
| "layer_index": 27, | |
| "path": "layers/layer-027.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "43842e9568d7e8c9d44bc1773dc9c9abc877dbf431694b396457703448d1071e" | |
| }, | |
| { | |
| "layer_index": 28, | |
| "path": "layers/layer-028.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "d9d18dbb1b14bcda96400faec248cc70c9c2fc0be2319f811da1634f2909bd5a" | |
| }, | |
| { | |
| "layer_index": 29, | |
| "path": "layers/layer-029.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "ee1315fc83f6500c76ce6f8d393e3b8f100f457962ff6304dc00d87756440725" | |
| }, | |
| { | |
| "layer_index": 30, | |
| "path": "layers/layer-030.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "4fe879becd6e39a52526c85d653ea013e5ced5a50ca20e946b6e5032b12844ee" | |
| }, | |
| { | |
| "layer_index": 31, | |
| "path": "layers/layer-031.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "bfec4de97d3a07e26c75d390cd8caf9b7468fdc7872861ee961aa7b6c74509aa" | |
| }, | |
| { | |
| "layer_index": 32, | |
| "path": "layers/layer-032.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "497793cae4f9ccdf8eb22e0513d74b368d3e6ca3f7f83307bb9d52633e2f672b" | |
| }, | |
| { | |
| "layer_index": 33, | |
| "path": "layers/layer-033.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "404ef9a50ffab9fbb3d89a656b0e940c6fc9a5f32720d5dabd4e6bbc2004dc3b" | |
| }, | |
| { | |
| "layer_index": 34, | |
| "path": "layers/layer-034.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "b3a70627d70b813e108e6edcf8c7331c115d0fd8a0d5a6d8227ebefa5c991aed" | |
| }, | |
| { | |
| "layer_index": 35, | |
| "path": "layers/layer-035.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "4ca0e586fa78431eef517044b1b87df5cf7e0186be8260e595ce2b070bb4908d" | |
| }, | |
| { | |
| "layer_index": 36, | |
| "path": "layers/layer-036.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "1e5ae5e0b8804c3d308d70aa30ef31513f97968104ca83dbd65c04cc20699b34" | |
| }, | |
| { | |
| "layer_index": 37, | |
| "path": "layers/layer-037.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "6b6def728647cf9c87693274768c77e1c9ce33095802669ab0367cd6479219a9" | |
| }, | |
| { | |
| "layer_index": 38, | |
| "path": "layers/layer-038.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "4f8df20f01b13736a1e90549c971032cd7b3e54de4fdadc2039f245d16331fbf" | |
| }, | |
| { | |
| "layer_index": 39, | |
| "path": "layers/layer-039.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "d479a18efcd909fa05eaedfecdbc2b8d7e69d554d4123186fddfc1fdd317f6e7" | |
| }, | |
| { | |
| "layer_index": 40, | |
| "path": "layers/layer-040.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "2168a97504d553206fa63b7651ea87a878062e8a19c116e616e2901e5f833fc5" | |
| }, | |
| { | |
| "layer_index": 41, | |
| "path": "layers/layer-041.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "3647a0c0dff1f22dac7bdf7d9322b317f3ae0331a682a1c62b40edd3fe5c5a7c" | |
| }, | |
| { | |
| "layer_index": 42, | |
| "path": "layers/layer-042.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "de547171c3687045f1ad94fa86f70a7f258e9a5ceaa1a385f7fc839cee3eb349" | |
| }, | |
| { | |
| "layer_index": 43, | |
| "path": "layers/layer-043.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "38ff28c2b945ade7badda4bc15401e9550b14034e1f92a75efc627b605c1f573" | |
| }, | |
| { | |
| "layer_index": 44, | |
| "path": "layers/layer-044.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "3858a090c76af0b697463b5427752e4b4d5ad5a05976297eb79b97eeabf48e6f" | |
| }, | |
| { | |
| "layer_index": 45, | |
| "path": "layers/layer-045.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 412753920, | |
| "artifact_bytes": 423154464, | |
| "sha256": "23e71eff2bd078f7bc6a77976f53cff6a6523ba1f33cc2a982d9f9ee6dc7c236" | |
| }, | |
| { | |
| "layer_index": 46, | |
| "path": "layers/layer-046.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "09fe2db1a2200c844effebcd9eede36be27a2a99c34b6887ab250c928f388f65" | |
| }, | |
| { | |
| "layer_index": 47, | |
| "path": "layers/layer-047.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "3c9885b10f86730d5d6baa61d2370c3b4bac88d722788c923d99a20bbdf57eb9" | |
| }, | |
| { | |
| "layer_index": 48, | |
| "path": "layers/layer-048.gguf", | |
| "tensor_count": 9, | |
| "tensor_bytes": 386015232, | |
| "artifact_bytes": 396415776, | |
| "sha256": "fd91c65a9bab080982c164eec5f07cd4ce7f84a79a12fca65a71c49ef2690252" | |
| } | |
| ], | |
| "skippy_abi_version": "0.1.25", | |
| "created_at_unix_secs": 1781121771 | |
| } | |