f2daaee
1
2
3
4
5
6
7
class ChatProcessorBase: def __init__(self, config): self.config = config def process(self, message): raise NotImplementedError("process method not implemented")