| 13 | |
| 14 | |
| 15 | class JobStatus(str, Enum): |
| 16 | queued = 'queued' |
| 17 | pdf_uploading_to_mineru = 'pdf_uploading_to_mineru' |
| 18 | pdf_parsing = 'pdf_parsing' |
| 19 | agent_running = 'agent_running' |
| 20 | final_report_persisting = 'final_report_persisting' |
| 21 | pdf_exporting = 'pdf_exporting' |
| 22 | completed = 'completed' |
| 23 | failed = 'failed' |
| 24 | |
| 25 | |
| 26 | class TokenUsage(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected