Fix dataclasses.asdict on the msgspec ServerArgs (#38958)

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alison Shao
2026-09-10 17:22:54 -07:00
committed by GitHub
co-authored by Claude Opus 5
parent 52c191da52
commit 00143e9c23
4 changed files with 10 additions and 7 deletions
@@ -4,7 +4,8 @@ python3 offline_batch_inference.py --model meta-llama/Llama-3.1-8B-Instruct
"""
import argparse
import dataclasses
import msgspec
import sglang as sgl
from sglang.srt.server_args import ServerArgs
@@ -24,7 +25,7 @@ def main(
sampling_params = {"temperature": 0.8, "top_p": 0.95}
# Create an LLM.
llm = sgl.Engine(**dataclasses.asdict(server_args))
llm = sgl.Engine(**msgspec.structs.asdict(server_args))
outputs = llm.generate(prompts, sampling_params)
# Print the outputs.