Return value from processing one provider batch.
| 93 | |
| 94 | |
| 95 | class _BatchOutput(NamedTuple): |
| 96 | """Return value from processing one provider batch.""" |
| 97 | |
| 98 | entries: list[ExtractionResult] |
| 99 | """Per-file results (each has ``gz_path`` set).""" |
| 100 | |
| 101 | usage: TokenUsage |
| 102 | """Aggregate token usage for this batch.""" |
| 103 | |
| 104 | |
| 105 | def _tally(batch: BatchResult, entry: ExtractionResult) -> None: |
no outgoing calls
no test coverage detected