first commit
This commit is contained in:
14
backend/app/schemas/analysis.py
Normal file
14
backend/app/schemas/analysis.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class AnalysisStatusOut(BaseModel):
|
||||
case_id: str
|
||||
status: str
|
||||
progress: int = 0
|
||||
current_step: str = ""
|
||||
message: str = ""
|
||||
|
||||
|
||||
class AnalysisTriggerOut(BaseModel):
|
||||
task_id: str
|
||||
message: str
|
||||
Reference in New Issue
Block a user