SystemyDialogowe/NaturalLAnguageGeneration.py

18 lines
459 B
Python
Raw Normal View History

2021-04-26 00:29:07 +02:00
class NLG:
"""
Moduł, który tworzy reprezentację tekstową aktu systemowego wybranego przez taktykę dialogu.
Wejście: Akt systemu (rama)
Wyjście: Tekst
"""
def __init__(self):
pass
def toText(self, systemAct):
2021-04-26 09:57:03 +02:00
if systemAct == [1]:
return "Nie rozumiem o czym mówisz."
if systemAct == [2]:
return "Do widzenia."
2021-04-26 00:29:07 +02:00
else:
2021-04-26 09:57:03 +02:00
return "Witaj, nazywam się Janusz."