Files
fund-tracer/backend/app/schemas/analysis.py

15 lines
257 B
Python
Raw Normal View History

2026-03-12 12:32:29 +08:00
from app.schemas.base import CamelModel
2026-03-11 16:28:04 +08:00
2026-03-12 12:32:29 +08:00
class AnalysisStatusOut(CamelModel):
2026-03-11 16:28:04 +08:00
case_id: str
status: str
progress: int = 0
current_step: str = ""
message: str = ""
2026-03-12 12:32:29 +08:00
class AnalysisTriggerOut(CamelModel):
2026-03-11 16:28:04 +08:00
task_id: str
message: str