Qwen3.8-27B
EXL3 3 bpw · tabbyapi · 128K context · RTX 4080 SUPER 16 GB
Alibaba's 27B dense model from August 2026, and the strongest model that fits one consumer card. It thinks before it answers, calls tools reliably and reads images, which makes it the default for coding agents and long projects.
77 tok/sdecode
– tok/sprefill
128Kcontext window
Earlier checkSep 22, 2026
With Omarchy Local AI it is one button. By hand, it is three steps: the weights, the config, the container. The server then answers on http://localhost:8000/v1.
- 1 Download the weights
hf download turboderp/Qwen3.8-27B-exl3 \ --revision 004a887127d8304ca2d5475d3a3c41f1761fdd27 \ --local-dir ~/models/Qwen3.8-27B-exl3-004a8871
- 2 Write the server config
cat > qwen3.8-27b.tabbyapi.128k.yml <<'EOF' network: host: 0.0.0.0 port: 5000 disable_auth: true disable_fetch_requests: true send_tracebacks: false api_servers: ["OAI"] sse_ping_interval: 15 logging: log_prompt: false log_generation_params: false log_requests: false log_chat_completion_requests: false model: model_dir: /workspace/models inline_model_loading: false use_dummy_models: false model_name: Qwen3.8-27B-EXL3-SC3bpw-H4-V4 backend: exllamav3 max_seq_len: 131072 cache_size: 132096 cache_mode: Q4 tensor_parallel: false gpu_split_auto: true autosplit_reserve: [512] chunk_size: 1024 output_chunking: true max_batch_size: 2 vision: true vision_offload: true reasoning: true start_in_reasoning: always reasoning_start_token: " thinking" reasoning_end_token: "</think>" template_vars_default: enable_thinking: true tool_format: qwen3_coder draft_model: draft_mode: mtp sampling: override_preset: memory: sysmem_recurrent_cache: 4096 sysmem_kv_cache: 0 cuda_malloc_async: true EOF - 3 Start the server
docker run --rm \ --gpus all \ -p 8000:5000 \ --shm-size 8g \ -e NVIDIA_VISIBLE_DEVICES=all \ -v ~/models/Qwen3.8-27B-exl3-004a8871:/workspace/models/Qwen3.8-27B-EXL3-SC3bpw-H4-V4:ro \ -v $PWD/qwen3.8-27b.tabbyapi.128k.yml:/app/config.yml:ro \ --entrypoint /opt/venv/bin/python3 \ ghcr.io/0xsero/tabbyapi-exl3@sha256:0f83e6198dc3be2561652d8df2525a7d1a69733e12fc8e25cbc5bc319a8a3ad1 \ main.py \ --config /app/config.yml
✓ loadLoads and serves within an hour
✓ chatAnswers a plain question and stops on its own
– reasoningThinks separately and gets 17 × 23 right
– toolsCalls a tool with the right arguments and uses the result
– contextRecalls a code buried in a prompt that fills 85% of the window
– speedDecodes at 15 tok/s or more
Passed the older check (loads and chats); a full six-check run is pending.
- Weights
- turboderp/Qwen3.8-27B-exl3 @ 004a887127 ›
- Image
- ghcr.io/0xsero/tabbyapi-exl3@sha256:0f83e6198dc3be2561652d8df2525a7d1a69733e12fc8e25cbc5bc319a8a3ad1
- Engine profile
- tabbyapi-qwen3.8-27b-exl3-3bpw-128k ›
- Recipe file
- registry/recipes/nvidia/rtx-4080-super-16gb/qwen3.8-27b.tabbyapi.128k.json ›
- Model released
- Aug 5, 2026
- Tested
- earlier acceptance