Systemy_DialogowePon15-30/presenter/Presenter.py
2021-04-26 13:31:00 +02:00

10 lines
282 B
Python

from presenter.chatbot_modules.NaturalLanguageUnderstanding import NaturalLanguageUnderstanding
class Presenter:
def process_user_input(self, user_input):
nlu = NaturalLanguageUnderstanding()
user_frames = nlu.text_to_user_frame(user_input)
return ''