BaseUpdateQueue
This commit is contained in:
parent
8dc792139e
commit
44bc8974c8
@ -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()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user