mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
BaseUpdateQueue
This commit is contained in:
parent
8dc792139e
commit
44bc8974c8
1 changed files with 4 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue