Image-Text-to-Text
GGUF
mesh-llm
layer-package
skippy
distributed-inference
local-inference
openai-compatible
experimental
imatrix
conversational
Instructions to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16 # Run inference directly in the terminal: llama cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16 # Run inference directly in the terminal: llama cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16 # Run inference directly in the terminal: ./llama-cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
Use Docker
docker model run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
- LM Studio
- Jan
- vLLM
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-layers", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
- Ollama
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers with Ollama:
ollama run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
- Unsloth Desktop
- Pi
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers with Docker Model Runner:
docker model run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
- Lemonade
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-UD-IQ1_S-layers-BF16
List all available models
lemonade list
- Hermes Agent
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ1_S-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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16
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/Qwen3.8-Flash-Next-UD-IQ1_S-layers:BF16" \ --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"
| { | |
| "schema_version": 1, | |
| "model_id": "unsloth/Qwen3.8-Flash-Next-GGUF:UD-IQ1_S", | |
| "source_model": { | |
| "path": "/source/UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf", | |
| "sha256": "88a1420825a9304063e882ada29d438263617f51ac8923d438d927496693bafd", | |
| "repo": "unsloth/Qwen3.8-Flash-Next-GGUF", | |
| "revision": "38bb39ee97821de2c9009abb7e93950eec396e66", | |
| "primary_file": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf", | |
| "canonical_ref": "unsloth/Qwen3.8-Flash-Next-GGUF@38bb39ee97821de2c9009abb7e93950eec396e66/UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf", | |
| "distribution_id": "Qwen3.8-Flash-Next-UD-IQ1_S", | |
| "files": [ | |
| { | |
| "path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| }, | |
| { | |
| "path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00002-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| }, | |
| { | |
| "path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00003-of-00003.gguf", | |
| "size_bytes": null, | |
| "sha256": null | |
| } | |
| ] | |
| }, | |
| "format": "layer-package", | |
| "layer_count": 48, | |
| "shared": { | |
| "metadata": { | |
| "path": "shared/metadata.gguf", | |
| "tensor_count": 3, | |
| "tensor_bytes": 7004160, | |
| "artifact_bytes": 17951200, | |
| "sha256": "67962a3bfe9b04327f35acab41dd85c0d612b8fe99ea4b5dd8232a3e2fe67ba4" | |
| }, | |
| "embeddings": { | |
| "path": "shared/embeddings.gguf", | |
| "tensor_count": 4, | |
| "tensor_bytes": 364584960, | |
| "artifact_bytes": 375532064, | |
| "sha256": "62e72c6fceed1c75a45784d0e3e86b1fc1bb21a6edadd3c35c7f86fd538cd868" | |
| }, | |
| "output": { | |
| "path": "shared/output.gguf", | |
| "tensor_count": 4, | |
| "tensor_bytes": 364584960, | |
| "artifact_bytes": 375532064, | |
| "sha256": "4d902623ba5d79899777b687a894a7ac22eaecd77f28c37eb6555fd2c3943f83" | |
| } | |
| }, | |
| "projectors": [ | |
| { | |
| "kind": "mmproj", | |
| "path": "projectors/mmproj-BF16.gguf", | |
| "tensor_count": 334, | |
| "tensor_bytes": 907523008, | |
| "artifact_bytes": 907542944, | |
| "sha256": "2e788f8c511d8093c7b43cb87b2fd7e14228340318057f8fb20c86df2efe2355" | |
| }, | |
| { | |
| "kind": "mmproj", | |
| "path": "projectors/mmproj-F16.gguf", | |
| "tensor_count": 334, | |
| "tensor_bytes": 903984064, | |
| "artifact_bytes": 904004000, | |
| "sha256": "1f7b7f0b984cf065c604360c29c8098362ed61b290db0ff12c6f360bb1a8a980" | |
| } | |
| ], | |
| "layers": [ | |
| { | |
| "layer_index": 0, | |
| "path": "layers/layer-000.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960704, | |
| "sha256": "37b19fedeb070dc90ea337c969f5714b0033d7adb172c5f3ae3db616f30bebe6" | |
| }, | |
| { | |
| "layer_index": 1, | |
| "path": "layers/layer-001.gguf", | |
| "tensor_count": 35, | |
| "tensor_bytes": 29813110656, | |
| "artifact_bytes": 29824059680, | |
| "sha256": "f8fe34b5d2320b01c6f43e24e5272e9ea74bcea0c1ef86bfadf4edffaecbb8c9" | |
| }, | |
| { | |
| "layer_index": 2, | |
| "path": "layers/layer-002.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 983875456, | |
| "artifact_bytes": 994824064, | |
| "sha256": "d4831c60a8e7213cd4e042ff7e1ec901fe42bedabed04a42077129d1566b9bc4" | |
| }, | |
| { | |
| "layer_index": 3, | |
| "path": "layers/layer-003.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "91e283a7fa3f4260fa01e181a8a1a8fcb18d1ea7763e6386f255eac957b68c0a" | |
| }, | |
| { | |
| "layer_index": 4, | |
| "path": "layers/layer-004.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818304, | |
| "sha256": "05cd81fbc802e740fc72e97c45cdbdba900bf26717dc8cc515b9a192043002fb" | |
| }, | |
| { | |
| "layer_index": 5, | |
| "path": "layers/layer-005.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960704, | |
| "sha256": "0119b1ac58d8a0d27f821425e4219fc9faa7174723683f5637c8d2f20c5b4e14" | |
| }, | |
| { | |
| "layer_index": 6, | |
| "path": "layers/layer-006.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960704, | |
| "sha256": "29abe4d42670898f96adaf511d2e287bf482b7ff024aafb2c4ad18196e060640" | |
| }, | |
| { | |
| "layer_index": 7, | |
| "path": "layers/layer-007.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "cd636f194e0b5b90102acb8c1e75c25481dd58140a1f35ad9b857cca93218ddf" | |
| }, | |
| { | |
| "layer_index": 8, | |
| "path": "layers/layer-008.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960704, | |
| "sha256": "4f3b79e81e41762339601c0512ecea1e227cffb73c59fab92626616beab64807" | |
| }, | |
| { | |
| "layer_index": 9, | |
| "path": "layers/layer-009.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960704, | |
| "sha256": "71d325356a6a78a2c4e58e3b26da4fa887c4123e5a01bfd3f989cc18aa3dca4a" | |
| }, | |
| { | |
| "layer_index": 10, | |
| "path": "layers/layer-010.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "dac13757bac22fdc680a499a3aab735baae3914c5ea79f6bfac23372494dbba9" | |
| }, | |
| { | |
| "layer_index": 11, | |
| "path": "layers/layer-011.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "25f056d62048e32b2124aac76c137811796361d106b54215c20d6ebf58da74ba" | |
| }, | |
| { | |
| "layer_index": 12, | |
| "path": "layers/layer-012.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "2a1743114eb4dc0f35885ad0aeed1d426c87e30b7e5e8c0dad7952a2434bbf8f" | |
| }, | |
| { | |
| "layer_index": 13, | |
| "path": "layers/layer-013.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "0c290c6ca5db2084aab745532a498e40169e7702b8176bf1e40661865014bb64" | |
| }, | |
| { | |
| "layer_index": 14, | |
| "path": "layers/layer-014.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "f6052cab7331e00f247b6f5b7d5175abe2d682226128b036f25c4c1480f9171a" | |
| }, | |
| { | |
| "layer_index": 15, | |
| "path": "layers/layer-015.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "01d71993d45430ad4c4d52934552fe212673ad650d7cd7c8b89b8ff5a923f9be" | |
| }, | |
| { | |
| "layer_index": 16, | |
| "path": "layers/layer-016.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "7ae858ce5525f85228ea689899c0bacb43006e0f3fc2445c5af7dd2f5c71dd19" | |
| }, | |
| { | |
| "layer_index": 17, | |
| "path": "layers/layer-017.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "db6cb5e37dfe6c40c6f7666bd2cb4444e6a4278ab0defa9d2e72bef529b75330" | |
| }, | |
| { | |
| "layer_index": 18, | |
| "path": "layers/layer-018.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "d634d502b47d74f87f3a9308d8c4133507785f3bca62d9b739b696a42fb25218" | |
| }, | |
| { | |
| "layer_index": 19, | |
| "path": "layers/layer-019.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "ac6685de32e7d47e3cbb13030cec2a69aeeb5426e2a16e3b0a2ee843b48b9e43" | |
| }, | |
| { | |
| "layer_index": 20, | |
| "path": "layers/layer-020.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "4fd36c76ab7329428b16b7e1bb0e338f013951cc9cc13b89fec0bd30a9bf606c" | |
| }, | |
| { | |
| "layer_index": 21, | |
| "path": "layers/layer-021.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "a8c6986a9213404d55ab2b75fed60b3372f8adfe5d565d3c3a598deec0696b5a" | |
| }, | |
| { | |
| "layer_index": 22, | |
| "path": "layers/layer-022.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "70eeb14db15163892c1159cf926f70c19794de83e07604ab27193b460823590d" | |
| }, | |
| { | |
| "layer_index": 23, | |
| "path": "layers/layer-023.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "470d136d2235547fa5a806f0fa14813b9bfc2ab19873996539f7e8a972aae137" | |
| }, | |
| { | |
| "layer_index": 24, | |
| "path": "layers/layer-024.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "e88f58df85597d2623903d4f8e047c25923c1ac0720e78c6bfb68d4bbd739046" | |
| }, | |
| { | |
| "layer_index": 25, | |
| "path": "layers/layer-025.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "23b52ea894e5b6d5be5aec1fb452a7fbb8a2866a822e7b54f5414796e45f46ae" | |
| }, | |
| { | |
| "layer_index": 26, | |
| "path": "layers/layer-026.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "1e640e5c727782760e9f50114912891d31da33fcf3b0540f88cd5dc2217ac8c0" | |
| }, | |
| { | |
| "layer_index": 27, | |
| "path": "layers/layer-027.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "19110ed81e37a27180998f1baecdbb62703ee5d9c98b1fc20381de8fe4c1f3ea" | |
| }, | |
| { | |
| "layer_index": 28, | |
| "path": "layers/layer-028.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "84cfd8aed4e6a6f3379e4017d9967c8274cd59d856e7c212833722349da0b21a" | |
| }, | |
| { | |
| "layer_index": 29, | |
| "path": "layers/layer-029.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "b61c1a8055d5579c7bd316a847738b2219b1a63ae3f44183ded029b2d6419391" | |
| }, | |
| { | |
| "layer_index": 30, | |
| "path": "layers/layer-030.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "43d59e1236de7726eecab7ea87441e5dc2777cfa2fc6c6ff871db99f6e0a5fbc" | |
| }, | |
| { | |
| "layer_index": 31, | |
| "path": "layers/layer-031.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "1af827cf865cee6478c8c39aa3d4d1604d97e44e5082b2514f51e522ab93f661" | |
| }, | |
| { | |
| "layer_index": 32, | |
| "path": "layers/layer-032.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "f2dd152789460a1f25f290b90d6c7735de53aee903508361d25a11032daa21eb" | |
| }, | |
| { | |
| "layer_index": 33, | |
| "path": "layers/layer-033.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "4438ba0b8c55a2a4c7858d0309c54aa42def822c8e0b839a57026e3a5a3c8b44" | |
| }, | |
| { | |
| "layer_index": 34, | |
| "path": "layers/layer-034.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "65e3b6cdf04bf0d9830763d2abc5971efad42f4cb7862c2e8d4fa1c77649cf3f" | |
| }, | |
| { | |
| "layer_index": 35, | |
| "path": "layers/layer-035.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "261b39a3d79882e81896cb172692b6ee62e97dea9e0897197b4c5f47473202a8" | |
| }, | |
| { | |
| "layer_index": 36, | |
| "path": "layers/layer-036.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "051f3455b25870bcd62007d9fa7853ae16fc5fba8988a60d9212fc9907474c87" | |
| }, | |
| { | |
| "layer_index": 37, | |
| "path": "layers/layer-037.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "70d9ca2f5d90b49b1bb01f4d288f8c8fd08436449bc3bbd3ebee17969e31fcbd" | |
| }, | |
| { | |
| "layer_index": 38, | |
| "path": "layers/layer-038.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "0ccf49545b8f5d28f4a37fff03fd8e5210c09486c6c1b83960b7051c7786c536" | |
| }, | |
| { | |
| "layer_index": 39, | |
| "path": "layers/layer-039.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 972506112, | |
| "artifact_bytes": 983454816, | |
| "sha256": "7fa2cd2f78ce3c4eb96feef45a0d2b2fb469ee49e705d4dafed0316b838aee62" | |
| }, | |
| { | |
| "layer_index": 40, | |
| "path": "layers/layer-040.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "0170e5542ff544ac9d079baf665c6bf4c25576c38c6b5231df9aaf0105142182" | |
| }, | |
| { | |
| "layer_index": 41, | |
| "path": "layers/layer-041.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "2aead71b4a1da62735950bb2cee257e9338f2a584f4d28584871f928ff657959" | |
| }, | |
| { | |
| "layer_index": 42, | |
| "path": "layers/layer-042.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "4a98b9f6e111de124eb2e55b4d9aaf1bebc573c0bbcfbeb1c6d861de77896066" | |
| }, | |
| { | |
| "layer_index": 43, | |
| "path": "layers/layer-043.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 867648512, | |
| "artifact_bytes": 878597216, | |
| "sha256": "2a2e87bbe99ff000e7bd832a91caa6d87bb70a55b42a6c97d958555b20302961" | |
| }, | |
| { | |
| "layer_index": 44, | |
| "path": "layers/layer-044.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 873012096, | |
| "artifact_bytes": 883960736, | |
| "sha256": "5b1e59be140355432f254761f0f639ac844eca4c92d65627ef2ddf569b05ac49" | |
| }, | |
| { | |
| "layer_index": 45, | |
| "path": "layers/layer-045.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "1c7a5a615215a12d8f6629f7dfafaf24f54ac042345a72c377b54099ac1771ac" | |
| }, | |
| { | |
| "layer_index": 46, | |
| "path": "layers/layer-046.gguf", | |
| "tensor_count": 28, | |
| "tensor_bytes": 977869696, | |
| "artifact_bytes": 988818336, | |
| "sha256": "72c1459ceac499b152f7d5ff2140b90eeea4b31c99dad8268bed19632aad0aa0" | |
| }, | |
| { | |
| "layer_index": 47, | |
| "path": "layers/layer-047.gguf", | |
| "tensor_count": 29, | |
| "tensor_bytes": 972506112, | |
| "artifact_bytes": 983454816, | |
| "sha256": "c57c9313b5385175526c5250ef6860846c65dccd0b387be5fbb5eda387a339cc" | |
| } | |
| ], | |
| "skippy_abi_version": "0.1.48", | |
| "created_at_unix_secs": 1788406325 | |
| } | |