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

@ -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",