From 111f31b60d47a449bec4dd6bb31ca39288e87f23 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Wed, 5 Feb 2025 14:41:14 -0500 Subject: [PATCH] fix Signed-off-by: Yuan Tang --- llama_stack/cli/stack/list_providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/list_providers.py b/llama_stack/cli/stack/list_providers.py index 28c821ba9..e244fe999 100644 --- a/llama_stack/cli/stack/list_providers.py +++ b/llama_stack/cli/stack/list_providers.py @@ -24,7 +24,7 @@ class StackListProviders(Subcommand): def _add_arguments(self): from llama_stack.distribution.distribution import builtin_automatically_routed_apis - api_values = [x.router_api for x in builtin_automatically_routed_apis()] + api_values = [x.router_api.value for x in builtin_automatically_routed_apis()] self.parser.add_argument( "api", type=str,