Text Generation
GGUF
mesh-llm
layer-package
skippy
distributed-inference
local-inference
openai-compatible
imatrix
conversational
Instructions to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./llama-cli -hf meshllm/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./build/bin/llama-cli -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Use Docker
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- LM Studio
- Jan
- vLLM
How to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Ollama
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Ollama:
ollama run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Unsloth Studio
How to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers to start chatting
- Pi
How to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/MiniMax-M2.1-UD-Q4_K_XL-layers" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Docker Model Runner:
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Lemonade
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Run and chat with the model
lemonade run user.MiniMax-M2.1-UD-Q4_K_XL-layers-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-UD-Q4_K_XL-layers
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use meshllm/MiniMax-M2.1-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/MiniMax-M2.1-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/MiniMax-M2.1-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"
Add layer package manifest from unsloth/MiniMax-M2.1-GGUF (unsloth/MiniMax-M2.1-GGUF:UD-Q4_K_XL)
eb5f6d1 verified | { | |
| "schema_version": 1, | |
| "model_id": "unsloth/MiniMax-M2.1-GGUF:UD-Q4_K_XL", | |
| "source_model": { | |
| "path": "/source/UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf", | |
| "sha256": "7eaf9c62666a52348f1b47d6db83e7c63a41b21d38dfbfb8d6eaeaee4c353c4a", | |
| "repo": "unsloth/MiniMax-M2.1-GGUF", | |
| "revision": "main", | |
| "primary_file": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf", | |
| "canonical_ref": "unsloth/MiniMax-M2.1-GGUF@main/UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf", | |
| "distribution_id": "MiniMax-M2.1-UD-Q4_K_XL", | |
| "files": [ | |
| { | |
| "path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| }, | |
| { | |
| "path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00002-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| }, | |
| { | |
| "path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00003-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| } | |
| ] | |
| }, | |
| "format": "layer-package", | |
| "layer_count": 62, | |
| "activation_width": 3072, | |
| "shared": { | |
| "metadata": { | |
| "path": "shared/metadata.gguf", | |
| "tensor_count": 0, | |
| "tensor_bytes": 0, | |
| "artifact_bytes": 8238592, | |
| "sha256": "bb405f23120fa13387ae711ec4d4693aa56375a92ec9afff2678d5b41b23d953" | |
| }, | |
| "embeddings": { | |
| "path": "shared/embeddings.gguf", | |
| "tensor_count": 1, | |
| "tensor_bytes": 345710592, | |
| "artifact_bytes": 353949216, | |
| "sha256": "0d41c074ef7d90857b9358acca03830b5626edcf024f5b0dc16253e9ace1a500" | |
| }, | |
| "output": { | |
| "path": "shared/output.gguf", | |
| "tensor_count": 2, | |
| "tensor_bytes": 504173568, | |
| "artifact_bytes": 512412256, | |
| "sha256": "0af98138be53f03c1db899e862bd2beac854bfce0afad221389225917f48d20c" | |
| } | |
| }, | |
| "layers": [ | |
| { | |
| "layer_index": 0, | |
| "path": "layers/layer-000.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "83a34806b90125bd617f0a734b6d673f423fb205aeeac64cf23124417a2fa7b7" | |
| }, | |
| { | |
| "layer_index": 1, | |
| "path": "layers/layer-001.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222265344, | |
| "artifact_bytes": 2230504736, | |
| "sha256": "3e423d1d68c491774936eb17c927759a760a3f587ba6143e504aabec387232ee" | |
| }, | |
| { | |
| "layer_index": 2, | |
| "path": "layers/layer-002.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222265344, | |
| "artifact_bytes": 2230504736, | |
| "sha256": "0d3c408b4096e836758745683a55f0c743199fab928ebe7fa11e9eb732bfb3d5" | |
| }, | |
| { | |
| "layer_index": 3, | |
| "path": "layers/layer-003.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "bcb88df5dc70a80dbbbb5247c3429365018a1a52e64f7e2e81f3fb0896ce6c7e" | |
| }, | |
| { | |
| "layer_index": 4, | |
| "path": "layers/layer-004.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "f911ff01bb80af4e15c4b03702655f39a73040775fbb69cf4d0fc28441e428ad" | |
| }, | |
| { | |
| "layer_index": 5, | |
| "path": "layers/layer-005.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "9c28493be5ead81821f3a3de781c6da438ac17bbbdcab9444e8b28a1e979b9cc" | |
| }, | |
| { | |
| "layer_index": 6, | |
| "path": "layers/layer-006.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "53c9bddb0ca21a5a750161b8a45e69c614a156a390764e6db0bb24e0a5af25a0" | |
| }, | |
| { | |
| "layer_index": 7, | |
| "path": "layers/layer-007.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "a2fdc36cfa1540c37a32249ab9e9e0e4d26f405a662a4b3456b6c9ceb7334ac6" | |
| }, | |
| { | |
| "layer_index": 8, | |
| "path": "layers/layer-008.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "2b37e7bd14daf1026b5127d79a891f56479c46be9ec238f5796312b909410ead" | |
| }, | |
| { | |
| "layer_index": 9, | |
| "path": "layers/layer-009.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "21a08d76c151ebab4c031c452bc6f06fb5f219d4fbd4f7906feda700b0dc8ae1" | |
| }, | |
| { | |
| "layer_index": 10, | |
| "path": "layers/layer-010.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "9f3955ec0cf4c08071373bdac57707bd87587dee3e1eccbe72c5f267b1260883" | |
| }, | |
| { | |
| "layer_index": 11, | |
| "path": "layers/layer-011.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "4f87e019c2d072c2029765a90250cafbf6e75c3b9f9413c2654f2a74459868a1" | |
| }, | |
| { | |
| "layer_index": 12, | |
| "path": "layers/layer-012.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "0a497267083eac1daf0ab5284f267dce3d840f9282237ba9c905281c231cf3b8" | |
| }, | |
| { | |
| "layer_index": 13, | |
| "path": "layers/layer-013.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "e90e34a114b06053c4fdb0c5e31e24814337f0d2c1705770b03f57ba48e00cac" | |
| }, | |
| { | |
| "layer_index": 14, | |
| "path": "layers/layer-014.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "8f8c5dde4b16f178a426894f769e90e17447de32f74e564125bd7899a66fe294" | |
| }, | |
| { | |
| "layer_index": 15, | |
| "path": "layers/layer-015.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "b755b8737b3e764d9ee3a62ae33ecea8351a2e27e52712e020e094a91e4cde5e" | |
| }, | |
| { | |
| "layer_index": 16, | |
| "path": "layers/layer-016.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "c5d696c4ff51851701d84c124fb8877cc58c0380241a0433d4b30761d3bc7cfe" | |
| }, | |
| { | |
| "layer_index": 17, | |
| "path": "layers/layer-017.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "4d1be66966b50043b4a1cb00b6a0591a5e5a73c7ef5f1525840d7946b89d27e1" | |
| }, | |
| { | |
| "layer_index": 18, | |
| "path": "layers/layer-018.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "f188133b05f4cdce678da9c0d084c3eb62ff9321bdc49786fc940bc8a2450ae7" | |
| }, | |
| { | |
| "layer_index": 19, | |
| "path": "layers/layer-019.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "45162c221cb406a7e1d2178e7accf318f328c8b2b15b420bbb80f60ca1d770d9" | |
| }, | |
| { | |
| "layer_index": 20, | |
| "path": "layers/layer-020.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "0db41a6216edddb9666bad6f896251fb700056aee3a883ada9f00706b8bc43ca" | |
| }, | |
| { | |
| "layer_index": 21, | |
| "path": "layers/layer-021.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "2c034c16a013f25c275367a8f45d62e1864da924305af8477389aacaed8fd324" | |
| }, | |
| { | |
| "layer_index": 22, | |
| "path": "layers/layer-022.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "aeb260e2c7098c9e1a767ebf05ee6491e341b15444c388fa297523921393f5ef" | |
| }, | |
| { | |
| "layer_index": 23, | |
| "path": "layers/layer-023.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "34f4da282ae973de897a4a2f81801e79140d38da6bbcab79579c5fe023401153" | |
| }, | |
| { | |
| "layer_index": 24, | |
| "path": "layers/layer-024.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222904320, | |
| "artifact_bytes": 2231143712, | |
| "sha256": "2ddd023a16c9814a78e8bf123c3ecba569115dc7345f935375b88a0030ef0e75" | |
| }, | |
| { | |
| "layer_index": 25, | |
| "path": "layers/layer-025.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "5516b17bf14ae9a5d4f50df64f6f67c363ff2919db077e813fa9930f193aec94" | |
| }, | |
| { | |
| "layer_index": 26, | |
| "path": "layers/layer-026.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "6d0ecbc224730b7a14bc1800410ba877b9448704014544a6002262d0f9d74d9d" | |
| }, | |
| { | |
| "layer_index": 27, | |
| "path": "layers/layer-027.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "0d12af34920e1b7e0bd17d251cd79a2641fcd4bcbe7248c29250e0713f08ddad" | |
| }, | |
| { | |
| "layer_index": 28, | |
| "path": "layers/layer-028.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "67b0681fb0e1ee68b7a5af1737a68be7d58474579c66a8a548d17b025aea3edb" | |
| }, | |
| { | |
| "layer_index": 29, | |
| "path": "layers/layer-029.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "ccca6837ad8098cb8a93d1ccd77dddeebb3126b6691bf4e76c37fd6e341235ad" | |
| }, | |
| { | |
| "layer_index": 30, | |
| "path": "layers/layer-030.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "194cc31cef2450d995bc2829421c02b00c3a52a90749f749b38bf6d72dc30d38" | |
| }, | |
| { | |
| "layer_index": 31, | |
| "path": "layers/layer-031.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "ed8b37a8ef4956595129de1fffb389add3c4663d3b0ea637f7d2839ffe740e68" | |
| }, | |
| { | |
| "layer_index": 32, | |
| "path": "layers/layer-032.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "e5d94422f69ff11b6e4608555374d67b67bdf5c79d9f886b84b9c2d554a44d2a" | |
| }, | |
| { | |
| "layer_index": 33, | |
| "path": "layers/layer-033.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "daa4e725d9efedeeb16116fe35662fc2a5af61aa7a18c5a9842ef397dfd11170" | |
| }, | |
| { | |
| "layer_index": 34, | |
| "path": "layers/layer-034.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "be82eac6f9810d5e89830756b5800ef2a2a0a4fed28a2d17062aa9fc63762109" | |
| }, | |
| { | |
| "layer_index": 35, | |
| "path": "layers/layer-035.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "3883964ec9df3b168983827af5657ab61dd2a94d84be70e4a945ec6b4f8aa841" | |
| }, | |
| { | |
| "layer_index": 36, | |
| "path": "layers/layer-036.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "d3e742fcfbf6e4f96e4f3d3caefa0670689ce16a334fcc13ea099cd0efcf6670" | |
| }, | |
| { | |
| "layer_index": 37, | |
| "path": "layers/layer-037.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "8ca5a966e5825aed53ecbfb8bb7a9a1fc3e7ba7e31c29439aee15c603b494bf0" | |
| }, | |
| { | |
| "layer_index": 38, | |
| "path": "layers/layer-038.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "8e52c60063a0ae68b11f783529ac9f72359badd18a694cb1597b61731bb3fe03" | |
| }, | |
| { | |
| "layer_index": 39, | |
| "path": "layers/layer-039.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071909376, | |
| "artifact_bytes": 2080148768, | |
| "sha256": "da4adb06dcfc933fbb6aee19e7d934483c72a1440d40d00fa1a304a5c0fe7b11" | |
| }, | |
| { | |
| "layer_index": 40, | |
| "path": "layers/layer-040.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "176f8f9e2d1d0ebaec2e8c9eaa9099a6261ed4b022b8b3e696c24973b00bc005" | |
| }, | |
| { | |
| "layer_index": 41, | |
| "path": "layers/layer-041.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222904320, | |
| "artifact_bytes": 2231143712, | |
| "sha256": "341faa646170e3568238402245b27ace00150124a9b78e44900aeba59754af8c" | |
| }, | |
| { | |
| "layer_index": 42, | |
| "path": "layers/layer-042.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "886457d0365959b2c720f01aaa44d4b3f1a283a002bce2c11bc21d9006fd2066" | |
| }, | |
| { | |
| "layer_index": 43, | |
| "path": "layers/layer-043.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "b31a2014d817ac8132b2ef5045a4e6e7ca7e634575c810b298d4dab0be2566df" | |
| }, | |
| { | |
| "layer_index": 44, | |
| "path": "layers/layer-044.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "7c4b33778f0603139ec0e4aac52f37d276db1444331ac516be67be1219161aad" | |
| }, | |
| { | |
| "layer_index": 45, | |
| "path": "layers/layer-045.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "47054ad6c5c4cfffaea39e2affb88ec6ce154f9aec6af3a532ea5adb1e3f0440" | |
| }, | |
| { | |
| "layer_index": 46, | |
| "path": "layers/layer-046.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "51704031d412403f59f71e816d14e46df7ffd5f8d067796883ba6dc5e5d33203" | |
| }, | |
| { | |
| "layer_index": 47, | |
| "path": "layers/layer-047.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "099d98d660127a986bbfd2d554432c403c7a436e2c7ea329b42d4e818bfb9e46" | |
| }, | |
| { | |
| "layer_index": 48, | |
| "path": "layers/layer-048.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "9f5b041d5980411d6bf17f875035a7a356cfeb67fef3eba7a7064cd832cfa49f" | |
| }, | |
| { | |
| "layer_index": 49, | |
| "path": "layers/layer-049.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222265344, | |
| "artifact_bytes": 2230504736, | |
| "sha256": "0614e385e4c89b9c5ba43e96b58aaf49bc9e89309ae270890678e64533774963" | |
| }, | |
| { | |
| "layer_index": 50, | |
| "path": "layers/layer-050.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "a5c2695b0e6ac425d3068e7b4959673df2380f235edc7ee06ce2e83f87f1a3cf" | |
| }, | |
| { | |
| "layer_index": 51, | |
| "path": "layers/layer-051.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "26d0955fb95d9edde69862b586e65bcbe3b907a70acfab5c25ae92dc3ab286bf" | |
| }, | |
| { | |
| "layer_index": 52, | |
| "path": "layers/layer-052.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "3a2e0559b47ff4fa1c1e581d8fc010131fea537064988fbc3cea9c86034e26ff" | |
| }, | |
| { | |
| "layer_index": 53, | |
| "path": "layers/layer-053.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "ca8deb5085037ff063798fcda535a71601ffae22ac0364b16b138127e53a8f6b" | |
| }, | |
| { | |
| "layer_index": 54, | |
| "path": "layers/layer-054.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "1673de1b6a4d410569050868092184aea467a6d1a7e45cbd98dd4dc7bb21da10" | |
| }, | |
| { | |
| "layer_index": 55, | |
| "path": "layers/layer-055.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2071270400, | |
| "artifact_bytes": 2079509792, | |
| "sha256": "49c315bc0a955a87b1ca3ba57f16c2bd030d9e1f054cb302caddc64dc0085dd6" | |
| }, | |
| { | |
| "layer_index": 56, | |
| "path": "layers/layer-056.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "afac8da2bbcc1f688f7177b837e4da5c01dc546c0983dd005717ddd8eab983b4" | |
| }, | |
| { | |
| "layer_index": 57, | |
| "path": "layers/layer-057.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2217399296, | |
| "artifact_bytes": 2225638688, | |
| "sha256": "b7c2fcebcfad0657aa6caa3f498f8aae7ddaf658e920a3b2b63c1f5114f9c288" | |
| }, | |
| { | |
| "layer_index": 58, | |
| "path": "layers/layer-058.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2066404352, | |
| "artifact_bytes": 2074643744, | |
| "sha256": "598ae7a9a4055a81e77c4fdf2e2d57fa031f9b574f13b21ca5938fcf88fd806c" | |
| }, | |
| { | |
| "layer_index": 59, | |
| "path": "layers/layer-059.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222904320, | |
| "artifact_bytes": 2231143712, | |
| "sha256": "31e5b358c48144a9a7e51a39f47c6e79f5ef99ae75dcc78cc6dd846589d47867" | |
| }, | |
| { | |
| "layer_index": 60, | |
| "path": "layers/layer-060.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222904320, | |
| "artifact_bytes": 2231143712, | |
| "sha256": "8012a12c536cf8e995337044550b367b0c31088a2e9422f8a47c728f0b9f6110" | |
| }, | |
| { | |
| "layer_index": 61, | |
| "path": "layers/layer-061.gguf", | |
| "tensor_count": 13, | |
| "tensor_bytes": 2222904320, | |
| "artifact_bytes": 2231143712, | |
| "sha256": "825d01d1bd77360e7feb7db1435012db8fea1b2f9548341149d511cfcbe8fb7e" | |
| } | |
| ], | |
| "skippy_abi_version": "0.1.24", | |
| "created_at_unix_secs": 1779826484 | |
| } | |