From 8f6dc129ac34d2a4c3e03043b927ff064ab5187c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Mon, 17 Nov 2025 10:08:35 +0100 Subject: [PATCH] fix: list-deps command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was referencing strong_typing which was removed in https://github.com/llamastack/llama-stack/pull/3944 Signed-off-by: Sébastien Han --- .github/workflows/python-build-test.yml | 1 + src/llama_stack_api/__init__.py | 5 +---- src/llama_stack_api/strong_typing/py.typed | 0 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 src/llama_stack_api/strong_typing/py.typed diff --git a/.github/workflows/python-build-test.yml b/.github/workflows/python-build-test.yml index b58f4eb69..a498ef0a0 100644 --- a/.github/workflows/python-build-test.yml +++ b/.github/workflows/python-build-test.yml @@ -48,3 +48,4 @@ jobs: command -v llama llama stack list-apis llama stack list-providers inference + llama stack list-deps starter diff --git a/src/llama_stack_api/__init__.py b/src/llama_stack_api/__init__.py index b7efcc543..b6fe2fd23 100644 --- a/src/llama_stack_api/__init__.py +++ b/src/llama_stack_api/__init__.py @@ -22,7 +22,7 @@ and considered a code smell. All exported symbols are explicitly listed in __all __version__ = "0.4.0.dev0" # Import submodules for those who need them -from . import common, strong_typing # noqa: F401 +from . import common # noqa: F401 # Import all public API symbols from .agents import Agents, ResponseGuardrail, ResponseGuardrailSpec @@ -393,8 +393,6 @@ from .shields import ( ShieldInput, Shields, ) - -# Import from strong_typing from .tools import ( ListToolDefsResponse, ListToolGroupsResponse, @@ -449,7 +447,6 @@ from .version import ( __all__ = [ # Submodules "common", - "strong_typing", # Version constants "LLAMA_STACK_API_V1", "LLAMA_STACK_API_V1ALPHA", diff --git a/src/llama_stack_api/strong_typing/py.typed b/src/llama_stack_api/strong_typing/py.typed deleted file mode 100644 index e69de29bb..000000000