mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 10:42:39 +00:00
fix start error
This commit is contained in:
parent
8332ea23ad
commit
97c1406773
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue