Bring agentic system api to toolchain

Add adapter dependencies and resolve adapters using a topological sort
This commit is contained in:
Ashwin Bharambe 2024-08-04 10:53:38 -07:00
parent b0e5340645
commit be19b22391
31 changed files with 2740 additions and 25 deletions

View file

@ -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}")