Response model for task creation
| 6 | |
| 7 | |
| 8 | class TaskResponse(BaseModel): |
| 9 | """Response model for task creation""" |
| 10 | |
| 11 | task_id: str |
| 12 | status: str = "created" |
| 13 | message: str = "Task created successfully" |
| 14 | created_at: datetime = Field(default_factory=datetime.utcnow) |
| 15 | |
| 16 | |
| 17 | class WorkflowStatusResponse(BaseModel): |
no outgoing calls
no test coverage detected