From 377233a6d6429ad1a18798ae33ebb6cffe7b3cd7 Mon Sep 17 00:00:00 2001 From: Courtney Pacheco <6019922+courtneypacheco@users.noreply.github.com> Date: Tue, 11 Mar 2025 08:19:23 -0400 Subject: [PATCH] Convert `config` positional arg to `--config` in `llama stack run` The rest of the llama-cli uses `--config` to pass in configuration files, so this change will align the behavior/design of `llama stack run` with the rest of the llama-cli Signed-off-by: Courtney Pacheco <6019922+courtneypacheco@users.noreply.github.com> --- llama_stack/cli/stack/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/run.py b/llama_stack/cli/stack/run.py index 1e4f3c5d9..29deb970b 100644 --- a/llama_stack/cli/stack/run.py +++ b/llama_stack/cli/stack/run.py @@ -30,7 +30,7 @@ class StackRun(Subcommand): def _add_arguments(self): self.parser.add_argument( - "config", + "--config", type=str, help="Path to config file to use for the run", )