Views
No views yet
q0f16.kHybrid KVStateKind in MLC-LLM which manages both PagedKVCache and RNNState simultaneously.1from mlc_llm import MLCEngine
2
3model = "HF://Mitiskuma/Qwen3.5-2B-q0f16-MLC"
4engine = MLCEngine(model, device="metal")
5
6for response in engine.chat.completions.create(
7 messages=[{"role": "user", "content": "What is the meaning of life?"}],
8 model=model,
9 stream=True,
10):
11 for choice in response.choices:
12 print(choice.delta.content, end="", flush=True)
13print()
14
15engine.terminate()mlc_llm chat HF://Mitiskuma/Qwen3.5-2B-q0f16-MLC| Parameter | Value |
|---|---|
| Base model | Qwen3.5-2B |
| Architecture | Qwen3.5 GatedDeltaNet (hybrid recurrent + attention) |
| Quantization | q0f16 |
| KV state kind | hybrid (PagedKVCache + RNNState) |
| Context window | 1024 (compile-time setting) |
| Conversation template | chatml |