Zaktualizuj 'modules/dialogue_state.py'

fix
This commit is contained in:
Julian Zabłoński 2022-06-08 01:07:39 +02:00
parent 5183e4220a
commit 83bd745164

View File

@ -8,19 +8,22 @@ def default_state():
state['belief_state'] = { state['belief_state'] = {
"cinema": { "cinema": {
"book": { "book": {
"movie": "",
"task": "", "task": "",
"date": "", "date": "",
"hour": "", "hour": "",
"seat": "", "seat": "",
"row": "", "row": ""
"movie": ""
}, },
"semi": { "semi": {
"name": "", "name": "",
"e-mail": "", "e-mail": "",
"price": 0, "price": 0,
"quantity": 0, "quantity": 0,
"tickettype": "" "tickettype": "",
"payments": "",
"cancel_book_status":"",
"cancel_buy_status":""
} }
} }
} }