YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Fuse3 vLLM Plugin
vLLM plugin for serving Fuse3 (fuse-1 Lite) models โ LFM2 host + Qwen3.6 coding experts.
Installation
pip install -e .
Usage
Once installed, vLLM automatically discovers the plugin via Python entry points.
# Serve fuse-1 Lite with vLLM
vllm serve Akahsizrr/fuse-1-Lite \
--mamba-cache-mode align \
--max-model-len 4096
# Or with the Python API
from vllm import LLM
llm = LLM(
model="Akahsizrr/fuse-1-Lite",
mamba_cache_mode="align",
max_model_len=4096,
)
How It Works
The plugin registers Fuse3ForCausalLM with vLLM's ModelRegistry. The model
extends vLLM's native LFM2 implementation:
- Host layers: Reuses vLLM's
Lfm2AttentionDecoderLayerandLfm2ShortConvDecoderLayer - Augmented layers: Wraps the host layer with a router + experts + scale
- Weight loading: Uses
AutoWeightsLoaderwith aWeightsMapperthat handles thehost_layer.prefix and conv weight renaming
The plugin does NOT require --trust-remote-code โ the model is registered natively.
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support