Merge branch 'main' into remove-authorization-from-provider-data

This commit is contained in:
Omar Abdelwahab 2025-11-17 09:44:26 -08:00 committed by GitHub
commit dd2789d0b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 3 additions and 5 deletions

2
.github/CODEOWNERS vendored
View file

@ -2,4 +2,4 @@
# These owners will be the default owners for everything in # These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence, # 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

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