fix: list-deps command (#4174)

# What does this PR do?

It was referencing strong_typing which was removed in
https://github.com/llamastack/llama-stack/pull/3944

## Test Plan

New CI build test.

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-11-17 15:26:10 +01:00 committed by GitHub
parent 97f535c4f1
commit 8bf4ee9ab9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 4 deletions

View file

@ -48,3 +48,4 @@ jobs:
command -v llama command -v llama
llama stack list-apis llama stack list-apis
llama stack list-providers inference llama stack list-providers inference
llama stack list-deps starter

View file

@ -22,7 +22,7 @@ and considered a code smell. All exported symbols are explicitly listed in __all
__version__ = "0.4.0.dev0" __version__ = "0.4.0.dev0"
# Import submodules for those who need them # Import submodules for those who need them
from . import common, strong_typing # noqa: F401 from . import common # noqa: F401
# Import all public API symbols # Import all public API symbols
from .agents import Agents, ResponseGuardrail, ResponseGuardrailSpec from .agents import Agents, ResponseGuardrail, ResponseGuardrailSpec
@ -393,8 +393,6 @@ from .shields import (
ShieldInput, ShieldInput,
Shields, Shields,
) )
# Import from strong_typing
from .tools import ( from .tools import (
ListToolDefsResponse, ListToolDefsResponse,
ListToolGroupsResponse, ListToolGroupsResponse,
@ -449,7 +447,6 @@ from .version import (
__all__ = [ __all__ = [
# Submodules # Submodules
"common", "common",
"strong_typing",
# Version constants # Version constants
"LLAMA_STACK_API_V1", "LLAMA_STACK_API_V1",
"LLAMA_STACK_API_V1ALPHA", "LLAMA_STACK_API_V1ALPHA",