Skip to content

Commit 02b3604

Browse files
cdoernclaude
andauthored
fix: export path_template from _utils (#330)
## Summary - `_utils/_path.py` defines `path_template` which is imported by multiple resource modules (admin, benchmarks, eval, models, etc.) - `_utils/__init__.py` was missing the re-export, causing `ImportError: cannot import name 'path_template' from 'llama_stack_client._utils'` at import time - This breaks llama-stack CI (`client=latest` variant) and anyone installing from git main ## Test plan - [x] Verify `from llama_stack_client._utils import path_template` works - [ ] Verify llama-stack integration tests pass with `client=latest` Signed-off-by: Charlie Doern <cdoern@redhat.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b41841a commit 02b3604

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/llama_stack_client/_utils/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# This source code is licensed under the terms described in the LICENSE file in
55
# the root directory of this source tree.
66

7+
from ._path import path_template as path_template
78
from ._sync import asyncify as asyncify
89
from ._proxy import LazyProxy as LazyProxy
910
from ._utils import (

0 commit comments

Comments
 (0)