Image-Text-to-Text
GGUF
qwen3_5
text-generation
magicquant
mxfp4
awq
mtp
imatrix
conversational
quark
Instructions to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S # Run inference directly in the terminal: llama cli -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S # Run inference directly in the terminal: llama cli -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
Use Docker
docker model run hf.co/magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
- LM Studio
- Jan
- vLLM
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-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": "magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-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/magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
- Ollama
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with Ollama:
ollama run hf.co/magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
- Unsloth Desktop
- Pi
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
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": "magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with Docker Model Runner:
docker model run hf.co/magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
- Lemonade
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
Run and chat with the model
lemonade run user.Qwen3.8-27B-MXFP4-MagicQuant-GGUF-UD-Q4_K_S
List all available models
lemonade list
- Hermes Agent
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
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 magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S
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 "magiccodingman/Qwen3.8-27B-MXFP4-MagicQuant-GGUF:UD-Q4_K_S" \ --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"
| { | |
| "schemaVersion": 1, | |
| "artifacts": [ | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-AWQ-MXFP4-native.gguf", | |
| "bytes": 18892854880, | |
| "sha256": "1a37c48570811215fa1a9d2a493211293ca375d17287771e85d28642946e88fc" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-MQ-IQ4_XS_1-Generic.gguf", | |
| "bytes": 14981769120, | |
| "sha256": "215dc51d41a212d58168ed80e77d0e14ca649d627563c389786263d77d1d4a3d" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-Q4_K_S-Unsloth.gguf", | |
| "bytes": 14547122080, | |
| "sha256": "b077ade0bd8aab9a1e5386ed09d72b6a24bca62fd71ec16c049b29a740f81ff3" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-IQ4_XS-Unsloth.gguf", | |
| "bytes": 13887481760, | |
| "sha256": "892cd2ac8aebc6f4d7cdf4d5fb0b417507a8ba9df7f038d45b9185835122cb03" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-Q3_K_XL-Unsloth.gguf", | |
| "bytes": 13026502560, | |
| "sha256": "149e7378c85768623e649afea5c9184ed1be05532948f841a39edf4870b88e63" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-IQ3_S-Unsloth.gguf", | |
| "bytes": 11988330400, | |
| "sha256": "e165d77ffd43985ebee7763e6a9642cdc8e6168ffed5017d954f6c2fc059f719" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-MQ-IQ2_M_1-Generic.gguf", | |
| "bytes": 11913885600, | |
| "sha256": "a242cddbdf9baaad660e96d26be99245f2410c154c3a0fa0c6451e3b7109eb01" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-IQ3_XXS-Unsloth.gguf", | |
| "bytes": 10903975840, | |
| "sha256": "0cf1c2f3106833a487ccd6b1c89b185ad96dc9e9146b7d5367ab9ec797579769" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-MQ-IQ2_M_2-Generic.gguf", | |
| "bytes": 10691495840, | |
| "sha256": "a7ac992cc59c3ec95105d56c8090fd1208f0ee65bc7571d33c4202afaa8c5dc8" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-Q2_K_XL-Unsloth.gguf", | |
| "bytes": 9809893280, | |
| "sha256": "9b899d16649813748689f2b99407b299cc9eeeae66289cf06066b050f10f3675" | |
| }, | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-MQ-IQ2_XXS_1-Unsloth.gguf", | |
| "bytes": 8223819680, | |
| "sha256": "84ab6e9cea4e1f7091e00a0b115ffa245e95f8b59e87e6e8ffdfdf3ee71dc441" | |
| }, | |
| { | |
| "fileName": "mmproj-Qwen3.8-27B-BF16.gguf", | |
| "bytes": 931146208, | |
| "sha256": "9925ae202b79dc67c2379fec2af2e1473276b47ca35ff72057df6ddc8b532178" | |
| }, | |
| { | |
| "fileName": "mmproj-Qwen3.8-27B-Q8_0.gguf", | |
| "bytes": 629247328, | |
| "sha256": "aea826b9e335205cfad0f6dc7923c2b992713ce648892d9f0f8b35081901f1fd" | |
| }, | |
| { | |
| "fileName": "imatrix.dat", | |
| "bytes": 13642688, | |
| "sha256": "123a92c3ba8cd31ed2887bd348682be5b68c977b12cc30e11c632e7ddf899eaa" | |
| }, | |
| { | |
| "fileName": "imatrix_unsloth.gguf", | |
| "bytes": 13642656, | |
| "sha256": "0ee5b10bd0c2fa2127c6f4b43dbfe1efd71e383b63217af9dade1de36599f1c1" | |
| } | |
| ], | |
| "removedArtifacts": [ | |
| { | |
| "fileName": "Qwen3.8-27B-Quark-MXFP4-UD-IQ2_XXS-Unsloth.gguf", | |
| "bytes": 9013733280, | |
| "sha256": "389126864bd6e3fb51639c9727567c91ebcec5e19b5c0ec072ee24d405c97f70", | |
| "publicationStatus": "removed", | |
| "removalReasonCode": "FAILED_QUALITY_FLOOR_AND_STRICT_DOMINANCE", | |
| "removalReason": "Removed from distribution after verification: KLD 1.172122 and PPL 17.87418 versus native PPL 5.801511. It is also strictly dominated by MQ-IQ2_XXS_1, which is smaller (8.22 GB) and has much lower KLD (0.321797)." | |
| } | |
| ] | |
| } | |