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"
Add layer package manifest from unsloth/Qwen3.8-Flash-Next-GGUF (unsloth/Qwen3.8-Flash-Next-GGUF:UD-IQ1_S)
Browse files- model-package.json +461 -0
model-package.json
ADDED
|
@@ -0,0 +1,461 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": 1,
|
| 3 |
+
"model_id": "unsloth/Qwen3.8-Flash-Next-GGUF:UD-IQ1_S",
|
| 4 |
+
"source_model": {
|
| 5 |
+
"path": "/source/UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf",
|
| 6 |
+
"sha256": "88a1420825a9304063e882ada29d438263617f51ac8923d438d927496693bafd",
|
| 7 |
+
"repo": "unsloth/Qwen3.8-Flash-Next-GGUF",
|
| 8 |
+
"revision": "38bb39ee97821de2c9009abb7e93950eec396e66",
|
| 9 |
+
"primary_file": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf",
|
| 10 |
+
"canonical_ref": "unsloth/Qwen3.8-Flash-Next-GGUF@38bb39ee97821de2c9009abb7e93950eec396e66/UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf",
|
| 11 |
+
"distribution_id": "Qwen3.8-Flash-Next-UD-IQ1_S",
|
| 12 |
+
"files": [
|
| 13 |
+
{
|
| 14 |
+
"path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00001-of-00003.gguf",
|
| 15 |
+
"size_bytes": null,
|
| 16 |
+
"sha256": null
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00002-of-00003.gguf",
|
| 20 |
+
"size_bytes": null,
|
| 21 |
+
"sha256": null
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"path": "UD-IQ1_S/Qwen3.8-Flash-Next-UD-IQ1_S-00003-of-00003.gguf",
|
| 25 |
+
"size_bytes": null,
|
| 26 |
+
"sha256": null
|
| 27 |
+
}
|
| 28 |
+
]
|
| 29 |
+
},
|
| 30 |
+
"format": "layer-package",
|
| 31 |
+
"layer_count": 48,
|
| 32 |
+
"shared": {
|
| 33 |
+
"metadata": {
|
| 34 |
+
"path": "shared/metadata.gguf",
|
| 35 |
+
"tensor_count": 3,
|
| 36 |
+
"tensor_bytes": 7004160,
|
| 37 |
+
"artifact_bytes": 17951200,
|
| 38 |
+
"sha256": "67962a3bfe9b04327f35acab41dd85c0d612b8fe99ea4b5dd8232a3e2fe67ba4"
|
| 39 |
+
},
|
| 40 |
+
"embeddings": {
|
| 41 |
+
"path": "shared/embeddings.gguf",
|
| 42 |
+
"tensor_count": 4,
|
| 43 |
+
"tensor_bytes": 364584960,
|
| 44 |
+
"artifact_bytes": 375532064,
|
| 45 |
+
"sha256": "62e72c6fceed1c75a45784d0e3e86b1fc1bb21a6edadd3c35c7f86fd538cd868"
|
| 46 |
+
},
|
| 47 |
+
"output": {
|
| 48 |
+
"path": "shared/output.gguf",
|
| 49 |
+
"tensor_count": 4,
|
| 50 |
+
"tensor_bytes": 364584960,
|
| 51 |
+
"artifact_bytes": 375532064,
|
| 52 |
+
"sha256": "4d902623ba5d79899777b687a894a7ac22eaecd77f28c37eb6555fd2c3943f83"
|
| 53 |
+
}
|
| 54 |
+
},
|
| 55 |
+
"projectors": [
|
| 56 |
+
{
|
| 57 |
+
"kind": "mmproj",
|
| 58 |
+
"path": "projectors/mmproj-BF16.gguf",
|
| 59 |
+
"tensor_count": 334,
|
| 60 |
+
"tensor_bytes": 907523008,
|
| 61 |
+
"artifact_bytes": 907542944,
|
| 62 |
+
"sha256": "2e788f8c511d8093c7b43cb87b2fd7e14228340318057f8fb20c86df2efe2355"
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"kind": "mmproj",
|
| 66 |
+
"path": "projectors/mmproj-F16.gguf",
|
| 67 |
+
"tensor_count": 334,
|
| 68 |
+
"tensor_bytes": 903984064,
|
| 69 |
+
"artifact_bytes": 904004000,
|
| 70 |
+
"sha256": "1f7b7f0b984cf065c604360c29c8098362ed61b290db0ff12c6f360bb1a8a980"
|
| 71 |
+
}
|
| 72 |
+
],
|
| 73 |
+
"layers": [
|
| 74 |
+
{
|
| 75 |
+
"layer_index": 0,
|
| 76 |
+
"path": "layers/layer-000.gguf",
|
| 77 |
+
"tensor_count": 28,
|
| 78 |
+
"tensor_bytes": 873012096,
|
| 79 |
+
"artifact_bytes": 883960704,
|
| 80 |
+
"sha256": "37b19fedeb070dc90ea337c969f5714b0033d7adb172c5f3ae3db616f30bebe6"
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"layer_index": 1,
|
| 84 |
+
"path": "layers/layer-001.gguf",
|
| 85 |
+
"tensor_count": 35,
|
| 86 |
+
"tensor_bytes": 29813110656,
|
| 87 |
+
"artifact_bytes": 29824059680,
|
| 88 |
+
"sha256": "f8fe34b5d2320b01c6f43e24e5272e9ea74bcea0c1ef86bfadf4edffaecbb8c9"
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"layer_index": 2,
|
| 92 |
+
"path": "layers/layer-002.gguf",
|
| 93 |
+
"tensor_count": 28,
|
| 94 |
+
"tensor_bytes": 983875456,
|
| 95 |
+
"artifact_bytes": 994824064,
|
| 96 |
+
"sha256": "d4831c60a8e7213cd4e042ff7e1ec901fe42bedabed04a42077129d1566b9bc4"
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"layer_index": 3,
|
| 100 |
+
"path": "layers/layer-003.gguf",
|
| 101 |
+
"tensor_count": 29,
|
| 102 |
+
"tensor_bytes": 867648512,
|
| 103 |
+
"artifact_bytes": 878597216,
|
| 104 |
+
"sha256": "91e283a7fa3f4260fa01e181a8a1a8fcb18d1ea7763e6386f255eac957b68c0a"
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"layer_index": 4,
|
| 108 |
+
"path": "layers/layer-004.gguf",
|
| 109 |
+
"tensor_count": 28,
|
| 110 |
+
"tensor_bytes": 977869696,
|
| 111 |
+
"artifact_bytes": 988818304,
|
| 112 |
+
"sha256": "05cd81fbc802e740fc72e97c45cdbdba900bf26717dc8cc515b9a192043002fb"
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"layer_index": 5,
|
| 116 |
+
"path": "layers/layer-005.gguf",
|
| 117 |
+
"tensor_count": 28,
|
| 118 |
+
"tensor_bytes": 873012096,
|
| 119 |
+
"artifact_bytes": 883960704,
|
| 120 |
+
"sha256": "0119b1ac58d8a0d27f821425e4219fc9faa7174723683f5637c8d2f20c5b4e14"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"layer_index": 6,
|
| 124 |
+
"path": "layers/layer-006.gguf",
|
| 125 |
+
"tensor_count": 28,
|
| 126 |
+
"tensor_bytes": 873012096,
|
| 127 |
+
"artifact_bytes": 883960704,
|
| 128 |
+
"sha256": "29abe4d42670898f96adaf511d2e287bf482b7ff024aafb2c4ad18196e060640"
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"layer_index": 7,
|
| 132 |
+
"path": "layers/layer-007.gguf",
|
| 133 |
+
"tensor_count": 29,
|
| 134 |
+
"tensor_bytes": 867648512,
|
| 135 |
+
"artifact_bytes": 878597216,
|
| 136 |
+
"sha256": "cd636f194e0b5b90102acb8c1e75c25481dd58140a1f35ad9b857cca93218ddf"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"layer_index": 8,
|
| 140 |
+
"path": "layers/layer-008.gguf",
|
| 141 |
+
"tensor_count": 28,
|
| 142 |
+
"tensor_bytes": 873012096,
|
| 143 |
+
"artifact_bytes": 883960704,
|
| 144 |
+
"sha256": "4f3b79e81e41762339601c0512ecea1e227cffb73c59fab92626616beab64807"
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"layer_index": 9,
|
| 148 |
+
"path": "layers/layer-009.gguf",
|
| 149 |
+
"tensor_count": 28,
|
| 150 |
+
"tensor_bytes": 873012096,
|
| 151 |
+
"artifact_bytes": 883960704,
|
| 152 |
+
"sha256": "71d325356a6a78a2c4e58e3b26da4fa887c4123e5a01bfd3f989cc18aa3dca4a"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"layer_index": 10,
|
| 156 |
+
"path": "layers/layer-010.gguf",
|
| 157 |
+
"tensor_count": 28,
|
| 158 |
+
"tensor_bytes": 873012096,
|
| 159 |
+
"artifact_bytes": 883960736,
|
| 160 |
+
"sha256": "dac13757bac22fdc680a499a3aab735baae3914c5ea79f6bfac23372494dbba9"
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"layer_index": 11,
|
| 164 |
+
"path": "layers/layer-011.gguf",
|
| 165 |
+
"tensor_count": 29,
|
| 166 |
+
"tensor_bytes": 867648512,
|
| 167 |
+
"artifact_bytes": 878597216,
|
| 168 |
+
"sha256": "25f056d62048e32b2124aac76c137811796361d106b54215c20d6ebf58da74ba"
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"layer_index": 12,
|
| 172 |
+
"path": "layers/layer-012.gguf",
|
| 173 |
+
"tensor_count": 28,
|
| 174 |
+
"tensor_bytes": 873012096,
|
| 175 |
+
"artifact_bytes": 883960736,
|
| 176 |
+
"sha256": "2a1743114eb4dc0f35885ad0aeed1d426c87e30b7e5e8c0dad7952a2434bbf8f"
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"layer_index": 13,
|
| 180 |
+
"path": "layers/layer-013.gguf",
|
| 181 |
+
"tensor_count": 28,
|
| 182 |
+
"tensor_bytes": 873012096,
|
| 183 |
+
"artifact_bytes": 883960736,
|
| 184 |
+
"sha256": "0c290c6ca5db2084aab745532a498e40169e7702b8176bf1e40661865014bb64"
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"layer_index": 14,
|
| 188 |
+
"path": "layers/layer-014.gguf",
|
| 189 |
+
"tensor_count": 28,
|
| 190 |
+
"tensor_bytes": 977869696,
|
| 191 |
+
"artifact_bytes": 988818336,
|
| 192 |
+
"sha256": "f6052cab7331e00f247b6f5b7d5175abe2d682226128b036f25c4c1480f9171a"
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"layer_index": 15,
|
| 196 |
+
"path": "layers/layer-015.gguf",
|
| 197 |
+
"tensor_count": 29,
|
| 198 |
+
"tensor_bytes": 867648512,
|
| 199 |
+
"artifact_bytes": 878597216,
|
| 200 |
+
"sha256": "01d71993d45430ad4c4d52934552fe212673ad650d7cd7c8b89b8ff5a923f9be"
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"layer_index": 16,
|
| 204 |
+
"path": "layers/layer-016.gguf",
|
| 205 |
+
"tensor_count": 28,
|
| 206 |
+
"tensor_bytes": 977869696,
|
| 207 |
+
"artifact_bytes": 988818336,
|
| 208 |
+
"sha256": "7ae858ce5525f85228ea689899c0bacb43006e0f3fc2445c5af7dd2f5c71dd19"
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"layer_index": 17,
|
| 212 |
+
"path": "layers/layer-017.gguf",
|
| 213 |
+
"tensor_count": 28,
|
| 214 |
+
"tensor_bytes": 873012096,
|
| 215 |
+
"artifact_bytes": 883960736,
|
| 216 |
+
"sha256": "db6cb5e37dfe6c40c6f7666bd2cb4444e6a4278ab0defa9d2e72bef529b75330"
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"layer_index": 18,
|
| 220 |
+
"path": "layers/layer-018.gguf",
|
| 221 |
+
"tensor_count": 28,
|
| 222 |
+
"tensor_bytes": 873012096,
|
| 223 |
+
"artifact_bytes": 883960736,
|
| 224 |
+
"sha256": "d634d502b47d74f87f3a9308d8c4133507785f3bca62d9b739b696a42fb25218"
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"layer_index": 19,
|
| 228 |
+
"path": "layers/layer-019.gguf",
|
| 229 |
+
"tensor_count": 29,
|
| 230 |
+
"tensor_bytes": 867648512,
|
| 231 |
+
"artifact_bytes": 878597216,
|
| 232 |
+
"sha256": "ac6685de32e7d47e3cbb13030cec2a69aeeb5426e2a16e3b0a2ee843b48b9e43"
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"layer_index": 20,
|
| 236 |
+
"path": "layers/layer-020.gguf",
|
| 237 |
+
"tensor_count": 28,
|
| 238 |
+
"tensor_bytes": 873012096,
|
| 239 |
+
"artifact_bytes": 883960736,
|
| 240 |
+
"sha256": "4fd36c76ab7329428b16b7e1bb0e338f013951cc9cc13b89fec0bd30a9bf606c"
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"layer_index": 21,
|
| 244 |
+
"path": "layers/layer-021.gguf",
|
| 245 |
+
"tensor_count": 28,
|
| 246 |
+
"tensor_bytes": 873012096,
|
| 247 |
+
"artifact_bytes": 883960736,
|
| 248 |
+
"sha256": "a8c6986a9213404d55ab2b75fed60b3372f8adfe5d565d3c3a598deec0696b5a"
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"layer_index": 22,
|
| 252 |
+
"path": "layers/layer-022.gguf",
|
| 253 |
+
"tensor_count": 28,
|
| 254 |
+
"tensor_bytes": 873012096,
|
| 255 |
+
"artifact_bytes": 883960736,
|
| 256 |
+
"sha256": "70eeb14db15163892c1159cf926f70c19794de83e07604ab27193b460823590d"
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"layer_index": 23,
|
| 260 |
+
"path": "layers/layer-023.gguf",
|
| 261 |
+
"tensor_count": 29,
|
| 262 |
+
"tensor_bytes": 867648512,
|
| 263 |
+
"artifact_bytes": 878597216,
|
| 264 |
+
"sha256": "470d136d2235547fa5a806f0fa14813b9bfc2ab19873996539f7e8a972aae137"
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"layer_index": 24,
|
| 268 |
+
"path": "layers/layer-024.gguf",
|
| 269 |
+
"tensor_count": 28,
|
| 270 |
+
"tensor_bytes": 873012096,
|
| 271 |
+
"artifact_bytes": 883960736,
|
| 272 |
+
"sha256": "e88f58df85597d2623903d4f8e047c25923c1ac0720e78c6bfb68d4bbd739046"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"layer_index": 25,
|
| 276 |
+
"path": "layers/layer-025.gguf",
|
| 277 |
+
"tensor_count": 28,
|
| 278 |
+
"tensor_bytes": 977869696,
|
| 279 |
+
"artifact_bytes": 988818336,
|
| 280 |
+
"sha256": "23b52ea894e5b6d5be5aec1fb452a7fbb8a2866a822e7b54f5414796e45f46ae"
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"layer_index": 26,
|
| 284 |
+
"path": "layers/layer-026.gguf",
|
| 285 |
+
"tensor_count": 28,
|
| 286 |
+
"tensor_bytes": 873012096,
|
| 287 |
+
"artifact_bytes": 883960736,
|
| 288 |
+
"sha256": "1e640e5c727782760e9f50114912891d31da33fcf3b0540f88cd5dc2217ac8c0"
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"layer_index": 27,
|
| 292 |
+
"path": "layers/layer-027.gguf",
|
| 293 |
+
"tensor_count": 29,
|
| 294 |
+
"tensor_bytes": 867648512,
|
| 295 |
+
"artifact_bytes": 878597216,
|
| 296 |
+
"sha256": "19110ed81e37a27180998f1baecdbb62703ee5d9c98b1fc20381de8fe4c1f3ea"
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"layer_index": 28,
|
| 300 |
+
"path": "layers/layer-028.gguf",
|
| 301 |
+
"tensor_count": 28,
|
| 302 |
+
"tensor_bytes": 873012096,
|
| 303 |
+
"artifact_bytes": 883960736,
|
| 304 |
+
"sha256": "84cfd8aed4e6a6f3379e4017d9967c8274cd59d856e7c212833722349da0b21a"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"layer_index": 29,
|
| 308 |
+
"path": "layers/layer-029.gguf",
|
| 309 |
+
"tensor_count": 28,
|
| 310 |
+
"tensor_bytes": 873012096,
|
| 311 |
+
"artifact_bytes": 883960736,
|
| 312 |
+
"sha256": "b61c1a8055d5579c7bd316a847738b2219b1a63ae3f44183ded029b2d6419391"
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"layer_index": 30,
|
| 316 |
+
"path": "layers/layer-030.gguf",
|
| 317 |
+
"tensor_count": 28,
|
| 318 |
+
"tensor_bytes": 977869696,
|
| 319 |
+
"artifact_bytes": 988818336,
|
| 320 |
+
"sha256": "43d59e1236de7726eecab7ea87441e5dc2777cfa2fc6c6ff871db99f6e0a5fbc"
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"layer_index": 31,
|
| 324 |
+
"path": "layers/layer-031.gguf",
|
| 325 |
+
"tensor_count": 29,
|
| 326 |
+
"tensor_bytes": 867648512,
|
| 327 |
+
"artifact_bytes": 878597216,
|
| 328 |
+
"sha256": "1af827cf865cee6478c8c39aa3d4d1604d97e44e5082b2514f51e522ab93f661"
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"layer_index": 32,
|
| 332 |
+
"path": "layers/layer-032.gguf",
|
| 333 |
+
"tensor_count": 28,
|
| 334 |
+
"tensor_bytes": 977869696,
|
| 335 |
+
"artifact_bytes": 988818336,
|
| 336 |
+
"sha256": "f2dd152789460a1f25f290b90d6c7735de53aee903508361d25a11032daa21eb"
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"layer_index": 33,
|
| 340 |
+
"path": "layers/layer-033.gguf",
|
| 341 |
+
"tensor_count": 28,
|
| 342 |
+
"tensor_bytes": 873012096,
|
| 343 |
+
"artifact_bytes": 883960736,
|
| 344 |
+
"sha256": "4438ba0b8c55a2a4c7858d0309c54aa42def822c8e0b839a57026e3a5a3c8b44"
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"layer_index": 34,
|
| 348 |
+
"path": "layers/layer-034.gguf",
|
| 349 |
+
"tensor_count": 28,
|
| 350 |
+
"tensor_bytes": 873012096,
|
| 351 |
+
"artifact_bytes": 883960736,
|
| 352 |
+
"sha256": "65e3b6cdf04bf0d9830763d2abc5971efad42f4cb7862c2e8d4fa1c77649cf3f"
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"layer_index": 35,
|
| 356 |
+
"path": "layers/layer-035.gguf",
|
| 357 |
+
"tensor_count": 29,
|
| 358 |
+
"tensor_bytes": 867648512,
|
| 359 |
+
"artifact_bytes": 878597216,
|
| 360 |
+
"sha256": "261b39a3d79882e81896cb172692b6ee62e97dea9e0897197b4c5f47473202a8"
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"layer_index": 36,
|
| 364 |
+
"path": "layers/layer-036.gguf",
|
| 365 |
+
"tensor_count": 28,
|
| 366 |
+
"tensor_bytes": 873012096,
|
| 367 |
+
"artifact_bytes": 883960736,
|
| 368 |
+
"sha256": "051f3455b25870bcd62007d9fa7853ae16fc5fba8988a60d9212fc9907474c87"
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"layer_index": 37,
|
| 372 |
+
"path": "layers/layer-037.gguf",
|
| 373 |
+
"tensor_count": 28,
|
| 374 |
+
"tensor_bytes": 977869696,
|
| 375 |
+
"artifact_bytes": 988818336,
|
| 376 |
+
"sha256": "70d9ca2f5d90b49b1bb01f4d288f8c8fd08436449bc3bbd3ebee17969e31fcbd"
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"layer_index": 38,
|
| 380 |
+
"path": "layers/layer-038.gguf",
|
| 381 |
+
"tensor_count": 28,
|
| 382 |
+
"tensor_bytes": 873012096,
|
| 383 |
+
"artifact_bytes": 883960736,
|
| 384 |
+
"sha256": "0ccf49545b8f5d28f4a37fff03fd8e5210c09486c6c1b83960b7051c7786c536"
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"layer_index": 39,
|
| 388 |
+
"path": "layers/layer-039.gguf",
|
| 389 |
+
"tensor_count": 29,
|
| 390 |
+
"tensor_bytes": 972506112,
|
| 391 |
+
"artifact_bytes": 983454816,
|
| 392 |
+
"sha256": "7fa2cd2f78ce3c4eb96feef45a0d2b2fb469ee49e705d4dafed0316b838aee62"
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"layer_index": 40,
|
| 396 |
+
"path": "layers/layer-040.gguf",
|
| 397 |
+
"tensor_count": 28,
|
| 398 |
+
"tensor_bytes": 873012096,
|
| 399 |
+
"artifact_bytes": 883960736,
|
| 400 |
+
"sha256": "0170e5542ff544ac9d079baf665c6bf4c25576c38c6b5231df9aaf0105142182"
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"layer_index": 41,
|
| 404 |
+
"path": "layers/layer-041.gguf",
|
| 405 |
+
"tensor_count": 28,
|
| 406 |
+
"tensor_bytes": 873012096,
|
| 407 |
+
"artifact_bytes": 883960736,
|
| 408 |
+
"sha256": "2aead71b4a1da62735950bb2cee257e9338f2a584f4d28584871f928ff657959"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"layer_index": 42,
|
| 412 |
+
"path": "layers/layer-042.gguf",
|
| 413 |
+
"tensor_count": 28,
|
| 414 |
+
"tensor_bytes": 977869696,
|
| 415 |
+
"artifact_bytes": 988818336,
|
| 416 |
+
"sha256": "4a98b9f6e111de124eb2e55b4d9aaf1bebc573c0bbcfbeb1c6d861de77896066"
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"layer_index": 43,
|
| 420 |
+
"path": "layers/layer-043.gguf",
|
| 421 |
+
"tensor_count": 29,
|
| 422 |
+
"tensor_bytes": 867648512,
|
| 423 |
+
"artifact_bytes": 878597216,
|
| 424 |
+
"sha256": "2a2e87bbe99ff000e7bd832a91caa6d87bb70a55b42a6c97d958555b20302961"
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"layer_index": 44,
|
| 428 |
+
"path": "layers/layer-044.gguf",
|
| 429 |
+
"tensor_count": 28,
|
| 430 |
+
"tensor_bytes": 873012096,
|
| 431 |
+
"artifact_bytes": 883960736,
|
| 432 |
+
"sha256": "5b1e59be140355432f254761f0f639ac844eca4c92d65627ef2ddf569b05ac49"
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"layer_index": 45,
|
| 436 |
+
"path": "layers/layer-045.gguf",
|
| 437 |
+
"tensor_count": 28,
|
| 438 |
+
"tensor_bytes": 977869696,
|
| 439 |
+
"artifact_bytes": 988818336,
|
| 440 |
+
"sha256": "1c7a5a615215a12d8f6629f7dfafaf24f54ac042345a72c377b54099ac1771ac"
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"layer_index": 46,
|
| 444 |
+
"path": "layers/layer-046.gguf",
|
| 445 |
+
"tensor_count": 28,
|
| 446 |
+
"tensor_bytes": 977869696,
|
| 447 |
+
"artifact_bytes": 988818336,
|
| 448 |
+
"sha256": "72c1459ceac499b152f7d5ff2140b90eeea4b31c99dad8268bed19632aad0aa0"
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"layer_index": 47,
|
| 452 |
+
"path": "layers/layer-047.gguf",
|
| 453 |
+
"tensor_count": 29,
|
| 454 |
+
"tensor_bytes": 972506112,
|
| 455 |
+
"artifact_bytes": 983454816,
|
| 456 |
+
"sha256": "c57c9313b5385175526c5250ef6860846c65dccd0b387be5fbb5eda387a339cc"
|
| 457 |
+
}
|
| 458 |
+
],
|
| 459 |
+
"skippy_abi_version": "0.1.48",
|
| 460 |
+
"created_at_unix_secs": 1788406325
|
| 461 |
+
}
|