Skip to content

Commit 8bf4ee9

Browse files
authored
fix: list-deps command (#4174)
# What does this PR do? It was referencing strong_typing which was removed in #3944 ## Test Plan New CI build test. Signed-off-by: Sébastien Han <[email protected]>
1 parent 97f535c commit 8bf4ee9

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/python-build-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ jobs:
4848
command -v llama
4949
llama stack list-apis
5050
llama stack list-providers inference
51+
llama stack list-deps starter

src/llama_stack_api/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__version__ = "0.4.0.dev0"
2323

2424
# Import submodules for those who need them
25-
from . import common, strong_typing # noqa: F401
25+
from . import common # noqa: F401
2626

2727
# Import all public API symbols
2828
from .agents import Agents, ResponseGuardrail, ResponseGuardrailSpec
@@ -393,8 +393,6 @@
393393
ShieldInput,
394394
Shields,
395395
)
396-
397-
# Import from strong_typing
398396
from .tools import (
399397
ListToolDefsResponse,
400398
ListToolGroupsResponse,
@@ -449,7 +447,6 @@
449447
__all__ = [
450448
# Submodules
451449
"common",
452-
"strong_typing",
453450
# Version constants
454451
"LLAMA_STACK_API_V1",
455452
"LLAMA_STACK_API_V1ALPHA",

src/llama_stack_api/strong_typing/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)