first commit

This commit is contained in:
2026-03-11 16:28:04 +08:00
commit c0f9ddabbf
101 changed files with 11601 additions and 0 deletions

View 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