Added implementations for get_agents_session, delete_agents_session and delete_agents (#267)

This commit is contained in:
Sarthak Deshpande 2024-10-23 02:20:43 +05:30 committed by GitHub
parent b81a3bd46a
commit 8a01b9e40c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 41 additions and 11 deletions

View file

@ -438,14 +438,12 @@ class Agents(Protocol):
@webmethod(route="/agents/turn/get")
async def get_agents_turn(
self,
agent_id: str,
turn_id: str,
self, agent_id: str, session_id: str, turn_id: str
) -> Turn: ...
@webmethod(route="/agents/step/get")
async def get_agents_step(
self, agent_id: str, turn_id: str, step_id: str
self, agent_id: str, session_id: str, turn_id: str, step_id: str
) -> AgentStepResponse: ...
@webmethod(route="/agents/session/create")