[diffusion] chore: track minimax-h3 in the nightly diffusion benchmark (#34655)

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Mick
2026-08-13 15:12:26 +08:00
committed by GitHub
co-authored by Claude Opus 5
parent 3f6ef01322
commit 969921b32d
2 changed files with 38 additions and 0 deletions
@@ -362,6 +362,16 @@ def _build_sglang_payload(case: dict) -> dict:
):
if key in case:
payload[key] = case[key]
# Model-specific request fields outside the common schema -- MiniMax-H3
# derives its shape from `target` and rejects an explicit num_frames, so a
# case needs to both add keys and drop common ones. A null value removes
# the key rather than sending null.
for key, value in (case.get("sglang_request_extra") or {}).items():
if value is None:
payload.pop(key, None)
else:
payload[key] = value
return payload