XThomasBU
added raptor and literalai
f2daaee
raw
history blame
187 Bytes
class ChatProcessorBase:
def __init__(self, config):
self.config = config
def process(self, message):
raise NotImplementedError("process method not implemented")