mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
12 lines
199 B
Python
12 lines
199 B
Python
from memory_scope.storage.base_monitor import BaseMonitor
|
|
|
|
|
|
class DummyMonitor(BaseMonitor):
|
|
def add(self):
|
|
pass
|
|
|
|
def add_token(self):
|
|
pass
|
|
|
|
def close(self):
|
|
pass
|