mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 02:53:30 +00:00
Added implementations for get_agents_session, delete_agents_session and delete_agents (#267)
This commit is contained in:
parent
b81a3bd46a
commit
8a01b9e40c
2 changed files with 41 additions and 11 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue