From 97c14067734b3bcb2903a6f27e3f9f5a6cb7cbc5 Mon Sep 17 00:00:00 2001 From: Edward Ma Date: Tue, 28 Jan 2025 09:06:28 -0800 Subject: [PATCH] fix start error --- llama_stack/apis/agents/agents.py | 1 + llama_stack/cli/stack/run.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/llama_stack/apis/agents/agents.py b/llama_stack/apis/agents/agents.py index b6d6e6578..a06bb1c26 100644 --- a/llama_stack/apis/agents/agents.py +++ b/llama_stack/apis/agents/agents.py @@ -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 diff --git a/llama_stack/cli/stack/run.py b/llama_stack/cli/stack/run.py index 5a8a14b0a..f4642a999 100644 --- a/llama_stack/cli/stack/run.py +++ b/llama_stack/cli/stack/run.py @@ -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)