Update synthetic.py

This commit is contained in:
Daniel Han 2025-04-30 00:10:39 -07:00
commit b71cb2705c

View file

@ -74,10 +74,12 @@ def async_load_vllm(
if which == "true":
# Ignore --enforce-eager True
subprocess_commands += ["--" + flag,]
elif which == "false":
# Ignore flag
pass
else:
subprocess_commands += ["--" + flag, which,]
pass
print(subprocess_commands)
vllm_process = subprocess.Popen(
subprocess_commands,
stdout = subprocess.PIPE,