One batch's record in the manifest.
| 15 | |
| 16 | |
| 17 | class BatchManifestEntry(BaseModel): |
| 18 | """One batch's record in the manifest.""" |
| 19 | |
| 20 | batch_idx: int |
| 21 | batch_id: str | None |
| 22 | status: Literal["submitted", "completed", "failed"] |
| 23 | error: str | None |
| 24 | files: list[str] |
| 25 | |
| 26 | |
| 27 | class BatchManifest(BaseModel): |