Bisect provider-rejected batches in triage and deep assessment
DeepSeek's content filter rejects a whole request (400 "Content Exists Risk") when one article trips it, which cost the other articles in the batch their assessment and retried them every run. New curate/batch.rs runs both stages through a bisecting runner: a rejected batch is split until the offending article is isolated, that article is retried once on the editor provider when it is a different one, and a still-rejected article is recorded as a provider_rejected assessment row so it is not retried for assessment_reuse_days. Cache reuse accepts rows from either configured model. Each stage logs reused/requested/rejected counts, the curation: line shows rejections when non-zero, explain prints them, and the llm_assess span reports the deep-set size. Implemented by a Claude agent from an orchestrator brief; verified fmt/clippy(-W dead_code)/test green (354 lib tests). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01A1rCLQeKBgnBo3oTgHuTMe
This commit is contained in:
@@ -211,3 +211,13 @@ implementer needs that are easy to get wrong:
|
||||
concurrency (`triage`, `assess`) is the bulk provider's `max_concurrent_requests`; the
|
||||
summaries fan out at the summary provider's. `Models { bulk, editor, summaries }` in the
|
||||
colophon and Behind the paper stay model ids taken from the built clients.
|
||||
- **Provider rejections** (2026-09-02): `curate::batch` bisects a triage or deep batch that
|
||||
fails with a non-transient error (`Api`, `Refusal`, `EmptyResponse`, or a response that
|
||||
parses to zero items) down to single articles; a rejected single is retried once on the
|
||||
editor client when it is another provider. An article both refuse gets an
|
||||
`article_assessments` row with `kind = 'provider_rejected'`, `score`/`fit` NULL,
|
||||
`rationale = "<provider>: <message ≤ 200 chars>"`, the bulk `model` and the stage's
|
||||
`prompt_version`; the cache loaders skip it (leaving the assessment absent) while it is within
|
||||
`assessment_reuse_days`, `--rescore` ignores it, and `admit::hygiene` never treats it as a low
|
||||
score. Because a recovered article's row carries the editor's model, reuse accepts rows whose
|
||||
`model` is either configured model (`triage::reusable_models`).
|
||||
|
||||
Reference in New Issue
Block a user