17 lines
321 B
Python
17 lines
321 B
Python
from enum import StrEnum
|
|
|
|
|
|
class AnalysisStatus(StrEnum):
|
|
DISCOVERING = "discovering"
|
|
COLLECTING = "collecting"
|
|
ANALYZING = "analyzing"
|
|
PLANNING = "planning"
|
|
COMPLETED = "completed"
|
|
FAILED = "failed"
|
|
|
|
|
|
class TaskStatus(StrEnum):
|
|
START = "start"
|
|
PROCESSING = "processing"
|
|
DONE = "done"
|