mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-07 20:50:52 +00:00
Moved some stuff out of common/; re-generated OpenAPI spec
This commit is contained in:
parent
76b354a081
commit
6665d31cdf
12 changed files with 238 additions and 236 deletions
|
@ -151,7 +151,7 @@ as being "Llama Stack compatible"
|
|||
def module(self) -> str:
|
||||
if self.adapter:
|
||||
return self.adapter.module
|
||||
return f"llama_stack.{self.api.value}.client"
|
||||
return f"llama_stack.apis.{self.api.value}.client"
|
||||
|
||||
@property
|
||||
def pip_packages(self) -> List[str]:
|
||||
|
|
|
@ -309,7 +309,7 @@ async def resolve_impls(
|
|||
|
||||
specs[api] = RouterProviderSpec(
|
||||
api=api,
|
||||
module=f"llama_stack.{api.value.lower()}.router",
|
||||
module=f"llama_stack.providers.routers.{api.value.lower()}",
|
||||
api_dependencies=[],
|
||||
inner_specs=inner_specs,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue