Spaces:
Build error
Build error
from enum import Enum | |
class ConversationStatus(Enum): | |
STARTING = 'STARTING' | |
RUNNING = 'RUNNING' | |
STOPPED = 'STOPPED' | |
from enum import Enum | |
class ConversationStatus(Enum): | |
STARTING = 'STARTING' | |
RUNNING = 'RUNNING' | |
STOPPED = 'STOPPED' | |