7a98bd3 f2daaee 7a98bd3 f2daaee
1
2
3
4
5
6
7
8
9
10
11
12
13
# Template for chat processor classes class ChatProcessorBase: def __init__(self, config): self.config = config def process(self, message): """ Processes and Logs the message """ raise NotImplementedError("process method not implemented")