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)