From ee8f3ad92350e4cba0f2ac7ed48c503206677346 Mon Sep 17 00:00:00 2001 From: Denis Diachkov Date: Sat, 7 Sep 2024 13:37:19 +0200 Subject: [PATCH] docstring update --- src/AGISwarm/asyncio_queue_manager/core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/AGISwarm/asyncio_queue_manager/core.py b/src/AGISwarm/asyncio_queue_manager/core.py index 965ef65..d6cfff5 100644 --- a/src/AGISwarm/asyncio_queue_manager/core.py +++ b/src/AGISwarm/asyncio_queue_manager/core.py @@ -36,10 +36,10 @@ class AsyncIOQueueManager: Class to manage the queue of generation requests Args: - abort_response (Optional[Dict], optional): - Response when request is aborted. Defaults to None. - max_concurrent_requests (int, optional): - Maximum number of concurrent requests. Defaults to 1. + max_concurrent_tasks (int, optional): + Maximum number of concurrent tasks. Defaults to 1. + sleep_time (float, optional): + Time to sleep between checks. Defaults to 0.01. """ def __init__(