| 188 | |
| 189 | |
| 190 | class RetryInfo(BaseModel): |
| 191 | timestamp: datetime |
| 192 | task_id: str |
| 193 | module_type: str |
| 194 | history_messages: List[Message] |
| 195 | debug_info: DebugInfo |
| 196 | |
| 197 | |
| 198 | class WorkerRes(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected