fix start error

This commit is contained in:
Edward Ma 2025-01-28 09:06:28 -08:00
parent 8332ea23ad
commit 97c1406773
2 changed files with 2 additions and 1 deletions

View file

@ -32,6 +32,7 @@ from llama_stack.apis.inference import (
ToolResponse,
ToolResponseMessage,
UserMessage,
ResponseFormat
)
from llama_stack.apis.safety import SafetyViolation
from llama_stack.apis.tools import ToolDef

View file

@ -199,4 +199,4 @@ class StackRun(Subcommand):
return
run_args.extend(["--env", f"{key}={value}"])
run_with_win(args) if sys.platform.startswith("win") else run_with_pty(args)
run_with_win(run_args) if sys.platform.startswith("win") else run_with_pty(run_args)