Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions models/moonshotai/Kimi-K2.6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ features:
args:
- "--reasoning-parser"
- "kimi_k2"
spec_decoding:
description: "Eagle3 speculative decoding for accelerated inference"
args:
- "--speculative-config"
- '{"model":"lightseekorg/kimi-k2.6-eagle3","method":"eagle3","num_speculative_tokens":3}'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The method field in the speculative configuration should be "eagle". In vLLM, the method parameter identifies the algorithm implementation, and "eagle" is the correct string for the Eagle speculative decoding architecture. Using "eagle3" will likely result in a configuration error as it is not a recognized method identifier in standard vLLM.

      - '{"model": "lightseekorg/kimi-k2.6-eagle3", "method": "eagle", "num_speculative_tokens": 3}'

text_only:
description: "Skip loading the vision encoder for text-only workloads — frees VRAM for KV cache. Mutually exclusive with encoder_parallel."
args:
Expand All @@ -48,6 +53,7 @@ features:
- "data"

opt_in_features:
- spec_decoding
- text_only

variants:
Expand Down