From edd946a207ad7b5f6d18ff4e2ec17bac870dcb0d Mon Sep 17 00:00:00 2001 From: Dinesh Yeduguru Date: Mon, 18 Nov 2024 18:02:32 -0800 Subject: [PATCH] remove async --- llama_stack/distribution/stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/stack.py b/llama_stack/distribution/stack.py index e08dc7d10..de196b223 100644 --- a/llama_stack/distribution/stack.py +++ b/llama_stack/distribution/stack.py @@ -183,7 +183,7 @@ async def construct_stack( return impls -async def get_stack_run_config_from_template(template: str) -> StackRunConfig: +def get_stack_run_config_from_template(template: str) -> StackRunConfig: template_path = pkg_resources.resource_filename( "llama_stack", f"templates/{template}/run.yaml" )