BaseUpdateQueue

This commit is contained in:
Ishaan Jaff 2025-04-01 18:31:54 -07:00
parent 8dc792139e
commit 44bc8974c8

View file

@ -1,10 +1,13 @@
"""
Base class for in memory buffer for database transactions
"""
import asyncio
from litellm._logging import verbose_proxy_logger
class BaseUpdateQueue:
"""Base class for spend update queues with common functionality"""
"""Base class for in memory buffer for database transactions"""
def __init__(self):
self.update_queue = asyncio.Queue()