15 lines
257 B
Python
15 lines
257 B
Python
from app.schemas.base import CamelModel
|
|
|
|
|
|
class AnalysisStatusOut(CamelModel):
|
|
case_id: str
|
|
status: str
|
|
progress: int = 0
|
|
current_step: str = ""
|
|
message: str = ""
|
|
|
|
|
|
class AnalysisTriggerOut(CamelModel):
|
|
task_id: str
|
|
message: str
|