Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ade56de
fix(llm): retry transient provider failures
rng1995 Sep 16, 2026
9d998ea
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
8a158ab
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
ed9276d
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
7deb423
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
1c91cd3
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
e99b296
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 16, 2026
34cba96
Merge main and address retry review feedback
rng1995 Sep 16, 2026
8c22c63
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 17, 2026
068530d
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 17, 2026
c32f8d2
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 17, 2026
f08b0c6
fix(llm): complete provider retry semantics
rng1995 Sep 17, 2026
fc783f3
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 17, 2026
426aed8
fix(llm): jitter coordinator retry backoff
rng1995 Sep 18, 2026
41e93ab
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
3d861af
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
9ce2349
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
114252b
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
67c22c9
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
c100cbd
Merge branch 'main' into naren/fix-NVCARPS-125-transient-retries
github-actions[bot] Sep 18, 2026
773a548
fix(llm): report actual provider retry stop outcomes
rng1995 Sep 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/skillspector/inspection_ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ class LedgerReason(StrEnum):
LedgerReason.LLM_STRUCTURED_RESPONSE_INVALID: (
"LLM returned a malformed structured response after bounded retries."
),
LedgerReason.LLM_CONNECTION_RETRIES_EXHAUSTED: ("LLM connection failed after bounded retries."),
LedgerReason.LLM_CONNECTION_RETRIES_EXHAUSTED: (
"Transient LLM provider failure persisted after bounded retries."
),
LedgerReason.ANALYZER_RUNTIME_ERROR: ("Analyzer failed after beginning applicable work."),
LedgerReason.UNACCOUNTED_WORK: ("Planned inspection work has no unique terminal outcome."),
LedgerReason.SEMANTIC_RUNTIME_INCOMPLETE: (
Expand Down
Loading
Loading