mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 20:14:13 +00:00
Bring agentic system api to toolchain
Add adapter dependencies and resolve adapters using a topological sort
This commit is contained in:
parent
b0e5340645
commit
be19b22391
31 changed files with 2740 additions and 25 deletions
|
@ -21,6 +21,10 @@ from .api import (
|
|||
)
|
||||
|
||||
|
||||
async def get_client_impl(base_url: str):
|
||||
return SafetyClient(base_url)
|
||||
|
||||
|
||||
class SafetyClient(Safety):
|
||||
def __init__(self, base_url: str):
|
||||
print(f"Initializing client for {base_url}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue