Spaces:
Sleeping
Sleeping
File size: 361 Bytes
43c34cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from agentreview.config import Configurable
class Dummy(Configurable):
"""A dummy backend does not make any API calls. We use it for extracting paper contents in PaperExtractor
and also for testing."""
stateful = False
type_name = "dummy"
def __init__(self, **kwargs):
super().__init__(**kwargs)
def reset(self):
pass |