Instructions to use byteshape/Qwen3.8-27B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use byteshape/Qwen3.8-27B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="byteshape/Qwen3.8-27B-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("byteshape/Qwen3.8-27B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use byteshape/Qwen3.8-27B-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 byteshape/Qwen3.8-27B-GGUF:IQ3_S # Run inference directly in the terminal: llama cli -hf byteshape/Qwen3.8-27B-GGUF:IQ3_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf byteshape/Qwen3.8-27B-GGUF:IQ3_S # Run inference directly in the terminal: llama cli -hf byteshape/Qwen3.8-27B-GGUF:IQ3_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 byteshape/Qwen3.8-27B-GGUF:IQ3_S # Run inference directly in the terminal: ./llama-cli -hf byteshape/Qwen3.8-27B-GGUF:IQ3_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 byteshape/Qwen3.8-27B-GGUF:IQ3_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf byteshape/Qwen3.8-27B-GGUF:IQ3_S
Use Docker
docker model run hf.co/byteshape/Qwen3.8-27B-GGUF:IQ3_S
- LM Studio
- Jan
- vLLM
How to use byteshape/Qwen3.8-27B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "byteshape/Qwen3.8-27B-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": "byteshape/Qwen3.8-27B-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/byteshape/Qwen3.8-27B-GGUF:IQ3_S
- SGLang
How to use byteshape/Qwen3.8-27B-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "byteshape/Qwen3.8-27B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "byteshape/Qwen3.8-27B-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 images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "byteshape/Qwen3.8-27B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "byteshape/Qwen3.8-27B-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" } } ] } ] }' - Ollama
How to use byteshape/Qwen3.8-27B-GGUF with Ollama:
ollama run hf.co/byteshape/Qwen3.8-27B-GGUF:IQ3_S
- Unsloth Desktop
- Pi
How to use byteshape/Qwen3.8-27B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf byteshape/Qwen3.8-27B-GGUF:IQ3_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": "byteshape/Qwen3.8-27B-GGUF:IQ3_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use byteshape/Qwen3.8-27B-GGUF with Docker Model Runner:
docker model run hf.co/byteshape/Qwen3.8-27B-GGUF:IQ3_S
- Lemonade
How to use byteshape/Qwen3.8-27B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull byteshape/Qwen3.8-27B-GGUF:IQ3_S
Run and chat with the model
lemonade run user.Qwen3.8-27B-GGUF-IQ3_S
List all available models
lemonade list
- Hermes Agent
How to use byteshape/Qwen3.8-27B-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 byteshape/Qwen3.8-27B-GGUF:IQ3_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 byteshape/Qwen3.8-27B-GGUF:IQ3_S
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use byteshape/Qwen3.8-27B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf byteshape/Qwen3.8-27B-GGUF:IQ3_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 "byteshape/Qwen3.8-27B-GGUF:IQ3_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"
have used your qwen3 and qwen3.6 MOE, if you provide a quant Qwen3.8 27B GGUF smaller than 10G, that's much better for 12G VRAM user.
Thanks for your contribution!!
I'm using the unsloth/Qwen3.8-27B-UD-IQ2_S (8.37 GB) on my RTX 3060 12GB, and it is very good at handling my requests in very long coding sessions. But, as we all know, the speed is very low (~9-16 t/s for a 100k context length). Even a one-digit improvement will be good here. Before the Qwen3.8 27B, my main model was the byteshape/Qwen3.6-35B-A3B-Q4_K_S, and I loved it so much.
I'm using the unsloth/Qwen3.8-27B-UD-IQ2_S (8.37 GB) on my RTX 3060 12GB, and it is very good at handling my requests in very long coding sessions. But, as we all know, the speed is very low (~9-16 t/s for a 100k context length). Even a one-digit improvement will be good here. Before the Qwen3.8 27B, my main model was the byteshape/Qwen3.6-35B-A3B-Q4_K_S, and I loved it so much.
suggest you use The tom's llama cpp turboquant version, you should get 24 token /s.