We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3dd80 commit 16c8b67Copy full SHA for 16c8b67
1 file changed
platforms/aidoc/restful_app/app.py
@@ -23,13 +23,15 @@
23
from flask import Flask, jsonify, request
24
from flask_wtf.csrf import CSRFProtect
25
26
+
27
# Processing status enum per Aidoc API specification.
28
class ProcessingStatus(str, Enum):
29
INITIALIZING = "INITIALIZING"
30
IDLE = "IDLE"
31
PROCESSING = "PROCESSING"
32
ERROR = "ERROR"
33
34
35
# The MONAI Deploy application to be wrapped.
36
# This can be changed to any other application in the repository.
37
# Provide the module path and the class name of the application.
0 commit comments