24 GatedDeltaNet layers + 8 full attention layers. The linear layers handle local/sequential patterns efficiently while the full attention layers provide global context anchoring.
Multi-Token Prediction (MTP)
The model includes a 1-layer MTP head for predicting multiple next tokens simultaneously, enabling faster inference throughput than standard single-token autoregressive decoding.
Text-Only Weights
Despite the architecture string Qwen3_5ForConditionalGeneration (which Alibaba uses for all Qwen3.5 variants including VL), this model contains zero vision weights. No ViT encoder, no image projector. The architecture class name reflects the MTP head and hybrid design, not multimodal capability.
Qwen3.5 has a built-in chain-of-thought reasoning mode that is on by default. For real-time applications (voice, chat, API), you must disable it or the model will consume your entire token budget on internal reasoning before producing visible output.
Add to your system prompt:
/no_think
Or set enable_thinking: false in your chat template parameters.
Note on exllamav3 Raw API
The raw exllamav3 Generator Python API may fail to initialize GatedDeltaNet recurrent state (conv_state on meta device error). TabbyAPI handles this initialization correctly. Use TabbyAPI as the serving layer rather than calling exllamav3 directly.
Hardware Requirements
Config
VRAM
Notes
Minimum
~8GB
Model only, minimal KV cache
Recommended
16GB+
Model + FP16 KV cache for 4096 context
Tested on
RTX 3090 24GB
5.6GB model, 18.4GB free for cache
Performance (tested on RTX 3090)
Response latency: 300–500ms per completion
Suitable for real-time voice pipelines with STT overhead
First request ~14ms (cache warmup, empty response)
Use Cases
This quantization was built for low-latency, single-user dedicated inference — specifically real-time voice AI over SIP/phone calls. The abliteration ensures zero self-censorship in commercial conversation contexts.
This model has had its safety filtering surgically removed (abliterated). It will comply with any instruction without refusal. Users are solely responsible for ensuring their use complies with applicable laws and ethical standards. See huihui-ai's original warnings for full details.