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
10 changes: 10 additions & 0 deletions tools/launcher/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,16 @@ class GlobalVariables:
hf_data: str = None
hf_local: str = None
output_dir: str = None
# Speculative-decoding draft / assistant model path. SPEED-bench
# MTP/EAGLE3/DRAFT_TARGET/DFLASH parent YAMLs reference this via
# ``--draft_model_dir <<global_vars.draft_model>>`` on both the
# qualitative + throughput_32k tasks so the path lives in one
# place. Surfaced on OMNIML-5024: the gemma-4-E4B-it / MTP / vLLM
# parent used the indirection but the launcher rejected it with
# ``No parameter named 'draft_model' exists`` because the
# dataclass schema didn't include the key; the agent worked
# around it inline but the canonical YAML stayed broken.
draft_model: str = None


@dataclass
Expand Down
Loading