A file that passed the prepare phase and is ready for batch extraction.
| 83 | |
| 84 | |
| 85 | class WorkItem(NamedTuple): |
| 86 | """A file that passed the prepare phase and is ready for batch extraction.""" |
| 87 | |
| 88 | gz_path: str |
| 89 | """Path to the gzipped manpage file.""" |
| 90 | |
| 91 | prepared: PreparedFile |
| 92 | """Output of the prepare phase (chunked prompts, metadata).""" |
| 93 | |
| 94 | |
| 95 | class _BatchOutput(NamedTuple): |
no outgoing calls