diff --git a/agents-api/agents_api/clients/integrations.py b/agents-api/agents_api/clients/integrations.py index 5423fb664..7dd27d5a8 100644 --- a/agents-api/agents_api/clients/integrations.py +++ b/agents-api/agents_api/clients/integrations.py @@ -21,7 +21,7 @@ async def run_integration_service( setup = setup or None - async with AsyncClient() as client: + async with AsyncClient(timeout=60) as client: response = await client.post( url, json={"arguments": arguments, "setup": setup},