mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 08:33:50 +00:00
13 lines
201 B
Python
13 lines
201 B
Python
import enum
|
|
|
|
|
|
class TaskStatus(str, enum.Enum):
|
|
SUCCESS = "success"
|
|
PENDING = "pending"
|
|
STARTED = "started"
|
|
FAILURE = "failure"
|
|
|
|
|
|
class AsyncEngine(str, enum.Enum):
|
|
LOCAL = "local"
|