mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
fix: list-deps command
It was referencing strong_typing which was removed in https://github.com/llamastack/llama-stack/pull/3944 Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
97f535c4f1
commit
8f6dc129ac
3 changed files with 2 additions and 4 deletions
1
.github/workflows/python-build-test.yml
vendored
1
.github/workflows/python-build-test.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue