Implement Combinator, DummyProcessor
This commit is contained in:
8
pytchat/processors/dummy_processor.py
Normal file
8
pytchat/processors/dummy_processor.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from .chat_processor import ChatProcessor
|
||||
|
||||
class DummyProcessor(ChatProcessor):
|
||||
'''
|
||||
Dummy processor just returns received chat_components directly.
|
||||
'''
|
||||
def process(self, chat_components: list):
|
||||
return chat_components
|
||||
Reference in New Issue
Block a user