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 Lfm2AttentionDecoderLayer and Lfm2ShortConvDecoderLayer
  • Augmented layers: Wraps the host layer with a router + experts + scale
  • Weight loading: Uses AutoWeightsLoader with a WeightsMapper that handles the host_layer. prefix and conv weight renaming

The plugin does NOT require --trust-remote-code โ€” the model is registered natively.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support