GOATS/DialogueStateTracker.py

8 lines
177 B
Python
Raw Normal View History

2024-04-21 10:09:03 +02:00
class DialogueStateTracker:
def dst(self, user_act):
state = None
if user_act == "request(firstname)":
state = "what name"
return state