mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-04 02:03:44 +00:00
feat: remove BuildConfig and its usage
Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
parent
3916015755
commit
0424afb7ed
6 changed files with 9 additions and 202 deletions
|
|
@ -7,14 +7,14 @@
|
|||
|
||||
import yaml
|
||||
|
||||
from llama_stack.core.datatypes import BuildConfig, StackConfig
|
||||
from llama_stack.core.datatypes import StackConfig
|
||||
from llama_stack.log import get_logger
|
||||
from llama_stack_api import Api, ExternalApiSpec
|
||||
|
||||
logger = get_logger(name=__name__, category="core")
|
||||
|
||||
|
||||
def load_external_apis(config: StackConfig | BuildConfig | None) -> dict[Api, ExternalApiSpec]:
|
||||
def load_external_apis(config: StackConfig | None) -> dict[Api, ExternalApiSpec]:
|
||||
"""Load external API specifications from the configured directory.
|
||||
|
||||
Args:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue