diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8b17510b7..8fff470f6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,4 +2,4 @@ # These owners will be the default owners for everything in # the repo. Unless a later match takes precedence, -* @ashwinb @yanxi0830 @hardikjshah @raghotham @ehhuang @terrytangyuan @leseb @bbrowning @reluctantfuturist @mattf @slekkala1 @franciscojavierarceo +* @ashwinb @yanxi0830 @hardikjshah @raghotham @ehhuang @leseb @bbrowning @reluctantfuturist @mattf @slekkala1 @franciscojavierarceo 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