Solving Conflict

This commit is contained in:
Sarthak Deshpande 2025-01-10 14:54:12 +05:30 committed by GitHub
parent 43116efe4d
commit 8e7fb9b4c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ class AgentsClient(Agents):
async def create_agent(self, agent_config: AgentConfig) -> AgentCreateResponse: async def create_agent(self, agent_config: AgentConfig) -> AgentCreateResponse:
async with httpx.AsyncClient() as client: async with httpx.AsyncClient() as client:
response = await client.post( response = await client.post(
f"{self.base_url}/alpha/agents/create", f"{self.base_url}/agents/create",
json={ json={
"agent_config": encodable_dict(agent_config), "agent_config": encodable_dict(agent_config),
}, },
@ -61,7 +61,7 @@ class AgentsClient(Agents):
) -> AgentSessionCreateResponse: ) -> AgentSessionCreateResponse:
async with httpx.AsyncClient() as client: async with httpx.AsyncClient() as client:
response = await client.post( response = await client.post(
f"{self.base_url}/alpha/agents/session/create", f"{self.base_url}/agents/session/create",
json={ json={
"agent_id": agent_id, "agent_id": agent_id,
"session_name": session_name, "session_name": session_name,
@ -86,7 +86,7 @@ class AgentsClient(Agents):
async with httpx.AsyncClient() as client: async with httpx.AsyncClient() as client:
async with client.stream( async with client.stream(
"POST", "POST",
f"{self.base_url}/alpha/agents/turn/create", f"{self.base_url}/agents/turn/create",
json=encodable_dict(request), json=encodable_dict(request),
headers={"Content-Type": "application/json"}, headers={"Content-Type": "application/json"},
timeout=20, timeout=20,