From a9690836cd9ee6b583bbc1ec79c2f95bbf76bc1b Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Wed, 1 Apr 2026 18:29:41 -0400 Subject: [PATCH] fix: export path_template from _utils to fix ImportError The _path module defines path_template which is imported by multiple resource modules, but _utils/__init__.py was missing the re-export, causing ImportError at import time. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Charlie Doern --- src/llama_stack_client/_utils/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/llama_stack_client/_utils/__init__.py b/src/llama_stack_client/_utils/__init__.py index fedf397d..fdb249b3 100644 --- a/src/llama_stack_client/_utils/__init__.py +++ b/src/llama_stack_client/_utils/__init__.py @@ -4,6 +4,7 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from ._path import path_template as path_template from ._sync import asyncify as asyncify from ._proxy import LazyProxy as LazyProxy from ._utils import (