You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2026. It is now read-only.
Problem
Current batch ingestion provides basic success/failure reporting. However:
Goal
Improve error handling and reporting for batch ingestion.
Proposed Improvements
Return structured response:
Classify errors:
Optional future:
Example Response
{ "success_count": 48, "failure_count": 2, "results": [...], "errors": [ {"index": 3, "error": "LLM timeout"}, {"index": 7, "error": "Invalid input"} ] } #143