mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 01:48:05 +00:00
Merge branch 'main' into remove-authorization-from-provider-data
This commit is contained in:
commit
dd2789d0b9
4 changed files with 3 additions and 5 deletions
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
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