mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 16:43:24 +00:00
14 lines
217 B
Python
14 lines
217 B
Python
import enum
|
|
|
|
|
|
class TaskStatus(str, enum.Enum):
|
|
SUCCESS = "success"
|
|
PENDING = "pending"
|
|
STARTED = "started"
|
|
FAILURE = "failure"
|
|
|
|
|
|
class AsyncEngine(str, enum.Enum):
|
|
LOCAL = "local"
|
|
KFP = "kfp"
|