mockup #7

Merged
s444519 merged 19 commits from mockup into master 2022-05-04 12:47:45 +02:00
3 changed files with 7 additions and 9 deletions
Showing only changes of commit bf91329bec - Show all commits

View File

@ -1,9 +1,9 @@
# Martyna # Martyna
class DP: class DP:
def __self__(): def __self__(self):
pass pass
def getAct(slots): def getAct(self, slots):
# iterate over slots # iterate over slots
# find empty # find empty
# returns system act # returns system act

View File

@ -1,9 +1,7 @@
# Mikolaj # Mikolaj
class NLG: class NLG:
def __self__(): def __self__(self):
pass pass
def getResponse(systemAct): def getResponse(self, systemAct):
# check speech act return "Witaj, nazywam się Cheddar.\n"
# generate response
pass

View File

@ -1,8 +1,8 @@
from components.NLU import NLU from components.NLU import NLU
from components.NLG import NLG
def generate_response(input): def generate_response(input):
result = NLU.nlu(input) result = NLU.nlu(input)
return result return result
inputText = 'Cześć, jak masz na imię?' inputText = 'Cześć, jak masz na imię?'
print(generate_response(inputText)) print(NLG.getResponse(generate_response(inputText)))