06-ZDIAUI0-Systemy-dialogow.../SystemActType.py

21 lines
350 B
Python
Raw Normal View History

2023-05-04 17:20:11 +02:00
from enum import Enum, unique
@unique
class SystemActType(Enum):
affirm = 0,
bye = 1,
confirm_domain = 2,
negate = 3,
repeat = 4,
reqmore = 5,
welcomemsg = 6,
canthelp = 7,
canthelp_missing_slot_value = 8,
expl_conf = 9,
impl_conf = 10,
inform = 11,
offer = 12,
request = 13,
select = 14