Image-Text-to-Text
GGUF
llama.cpp
qwen3_8
Mixture of Experts
gsq
rco
reasoning
efficient-thinking
token-efficient
post-training
imatrix
conversational
Instructions to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF 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 ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF 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 ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS # Run inference directly in the terminal: llama cli -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS # Run inference directly in the terminal: llama cli -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
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 ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS # Run inference directly in the terminal: ./llama-cli -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
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 ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS # Run inference directly in the terminal: ./build/bin/llama-cli -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
Use Docker
docker model run hf.co/ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
- LM Studio
- Jan
- vLLM
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF", "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/ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
- Ollama
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with Ollama:
ollama run hf.co/ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
- Unsloth Desktop
- Pi
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
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": "ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with Docker Model Runner:
docker model run hf.co/ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
- Lemonade
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
Run and chat with the model
lemonade run user.Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF-IQ2_XS
List all available models
lemonade list
- Hermes Agent
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
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 ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS
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 "ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF:IQ2_XS" \ --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"
| { | |
| "repo": "ukisai/Swift-1.5-Qwen3.8-Flash-Next-GSQ-RCO-GGUF", | |
| "model": "Swift 1.5 Qwen3.8-Flash-Next", | |
| "base_model": "ukisai/Swift-Qwen3.8-Flash-Next", | |
| "models": [ | |
| { | |
| "tier": "IQ2_XS", | |
| "unsplit_sha256": "eb0dcf3c752d4b282eacc902e09200c1ac1fd974b4466e43f8a07699311f6580", | |
| "unsplit_bytes": 68152166976, | |
| "development_kld": 0.341275, | |
| "shards": [ | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ2_XS-00001-of-00002.gguf", | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ2_XS-00002-of-00002.gguf" | |
| ], | |
| "tensor_count": 1224 | |
| }, | |
| { | |
| "tier": "Q2_0", | |
| "unsplit_sha256": "a14046f27675e53fadccaf99e8f7583efda6239d9932001ee927e3e33e710015", | |
| "unsplit_bytes": 66549952576, | |
| "development_kld": 0.42435, | |
| "shards": [ | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-Q2_0-00001-of-00002.gguf", | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-Q2_0-00002-of-00002.gguf" | |
| ], | |
| "tensor_count": 1224 | |
| }, | |
| { | |
| "tier": "IQ3_XXS", | |
| "unsplit_sha256": "12e72a2fcb388b192c7352a1392770bfb60365a49b37875f146adf578c60e358", | |
| "unsplit_bytes": 75966072896, | |
| "development_kld": 0.240139, | |
| "shards": [ | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ3_XXS-00001-of-00002.gguf", | |
| "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ3_XXS-00002-of-00002.gguf" | |
| ], | |
| "tensor_count": 1224 | |
| } | |
| ], | |
| "files": [ | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ2_XS-00001-of-00002.gguf", | |
| "sha256": "ca3b302d3d1eb6eddce3ea4acc79854e6cc5fdc0583e374a6a8b6bb67327743b", | |
| "bytes": 39788473344, | |
| "tier": "IQ2_XS", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ2_XS-00002-of-00002.gguf", | |
| "sha256": "e4996a6de18fd49c58d9a0040fcfd73787db6407c51973f29884bee7b14c9dbb", | |
| "bytes": 28363693824, | |
| "tier": "IQ2_XS", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-Q2_0-00001-of-00002.gguf", | |
| "sha256": "79e2a3873f1b05df835a1a191b20f2e74b9e12df949cd89861d17d98b6ef9678", | |
| "bytes": 39799117984, | |
| "tier": "Q2_0", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-Q2_0-00002-of-00002.gguf", | |
| "sha256": "ef3bb04fb4e14f04624abd8acf25faf1603594a034050b048df85ec152ad5ae0", | |
| "bytes": 26750834816, | |
| "tier": "Q2_0", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ3_XXS-00001-of-00002.gguf", | |
| "sha256": "3bddaa667c750f63baca766df9433e1afd35a139f401c5ca5e7ff560ceff3d23", | |
| "bytes": 39785790560, | |
| "tier": "IQ3_XXS", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "Swift-Qwen3.8-Flash-Next-GSQ-RCO-IQ3_XXS-00002-of-00002.gguf", | |
| "sha256": "b0b15f782af71eb471909d2f3313b2927c324962f86c084325c247cd411a0160", | |
| "bytes": 36180282560, | |
| "tier": "IQ3_XXS", | |
| "role": "model_shard" | |
| }, | |
| { | |
| "file": "mmproj-Swift-Qwen3.8-Flash-Next-BF16.gguf", | |
| "sha256": "cd1140f4abba943ce8d9fa92fed8407e389954d26907efde7b72153c75bd8a60", | |
| "bytes": 907543520, | |
| "role": "vision_projector" | |
| } | |
| ], | |
| "evaluation_context_tokens": 512, | |
| "runtime": "llama.cpp", | |
| "split_verification": "Both shards reconstruct all 1224 source tensors with zero missing or mismatched tensors in the recorded packaging audits.", | |
| "exact_source_recovery": [ | |
| { | |
| "tier": "IQ3_XXS", | |
| "capsule": "exact-source-recovery/IQ3_XXS.json", | |
| "capsule_sha256": "7f644c3616dcafaffe607749c729f406b8ba21fe055ce35b8eb82659ac76fe0c", | |
| "source_sha256": "12e72a2fcb388b192c7352a1392770bfb60365a49b37875f146adf578c60e358", | |
| "source_bytes": 75966072896, | |
| "streaming_reconstruction_verified": true | |
| }, | |
| { | |
| "tier": "IQ2_XS", | |
| "capsule": "exact-source-recovery/IQ2_XS.json", | |
| "capsule_sha256": "5e0a9e44ee3904b036a77375321b28f9689f88d4a08d744ded4ff6a95f1ee766", | |
| "source_sha256": "eb0dcf3c752d4b282eacc902e09200c1ac1fd974b4466e43f8a07699311f6580", | |
| "source_bytes": 68152166976, | |
| "streaming_reconstruction_verified": true | |
| }, | |
| { | |
| "tier": "Q2_0", | |
| "capsule": "exact-source-recovery/Q2_0.json", | |
| "capsule_sha256": "11afd133756b3d2d7799de0cbbc6ad138d1fd8f080d8db4598478e26605c18d0", | |
| "source_sha256": "a14046f27675e53fadccaf99e8f7583efda6239d9932001ee927e3e33e710015", | |
| "source_bytes": 66549952576, | |
| "streaming_reconstruction_verified": true | |
| } | |
| ] | |
| } | |