initial client + server for agentic system

This commit is contained in:
Ashwin Bharambe 2024-07-09 22:17:36 -07:00
parent 13e1667e7a
commit beb2870750
8 changed files with 166 additions and 3 deletions

View file

@ -196,6 +196,12 @@ class AgenticSystem(Protocol):
AgenticSystemExecuteResponse, AgenticSystemExecuteResponseStreamChunk
]: ...
@webmethod(route="/agentic_system/delete")
def delete_agentic_system(
self,
agent_id: str,
) -> None: ...
class LlamaStackEndpoints(Inference, AgenticSystem): ...