File size: 130 Bytes
51ff9e5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from enum import Enum


class ConversationStatus(Enum):
    STARTING = 'STARTING'
    RUNNING = 'RUNNING'
    STOPPED = 'STOPPED'