Implement Combinator, DummyProcessor

This commit is contained in:
taizan-hokuto
2019-12-30 11:02:29 +09:00
parent c4f1194a53
commit 4e956b8d84
8 changed files with 71 additions and 6 deletions

View 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