NLG
This commit is contained in:
parent
60b63307ba
commit
bf91329bec
@ -1,9 +1,9 @@
|
||||
# Martyna
|
||||
class DP:
|
||||
def __self__():
|
||||
def __self__(self):
|
||||
pass
|
||||
|
||||
def getAct(slots):
|
||||
def getAct(self, slots):
|
||||
# iterate over slots
|
||||
# find empty
|
||||
# returns system act
|
||||
|
@ -1,9 +1,7 @@
|
||||
# Mikolaj
|
||||
class NLG:
|
||||
def __self__():
|
||||
def __self__(self):
|
||||
pass
|
||||
|
||||
def getResponse(systemAct):
|
||||
# check speech act
|
||||
# generate response
|
||||
pass
|
||||
def getResponse(self, systemAct):
|
||||
return "Witaj, nazywam się Cheddar.\n"
|
@ -1,8 +1,8 @@
|
||||
from components.NLU import NLU
|
||||
|
||||
from components.NLG import NLG
|
||||
def generate_response(input):
|
||||
result = NLU.nlu(input)
|
||||
return result
|
||||
|
||||
inputText = 'Cześć, jak masz na imię?'
|
||||
print(generate_response(inputText))
|
||||
print(NLG.getResponse(generate_response(inputText)))
|
||||
|
Loading…
Reference in New Issue
Block a user