Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 8 additions & 1 deletion hermes_cli/kanban.py
Original file line number Diff line number Diff line change
Expand Up @@ -2667,6 +2667,7 @@ def _coerce_positive_int(value):
for (tid, reason) in res.respawn_guarded
],
"rate_limited": res.rate_limited,
"billing_exhausted": res.billing_exhausted,
"skipped_locked": res.skipped_locked,
}, indent=2))
return 0
Expand Down Expand Up @@ -2710,9 +2711,15 @@ def _coerce_positive_int(value):
print(f"Respawn guarded ({reason}): {tid}")
if res.rate_limited:
print(
f"Rate-limited / billing wall (requeued, no failure counted): "
f"Rate-limited / quota wall (requeued, no failure counted): "
f"{', '.join(res.rate_limited)}"
)
if res.billing_exhausted:
print(
f"BILLING EXHAUSTED (capability-blocked, retries HALTED — "
f"add credits at https://portal.nousresearch.com or remap model): "
f"{', '.join(res.billing_exhausted)}"
)
if res.skipped_locked:
print("Tick skipped: another dispatcher holds the board lock.")
return 0
Expand Down
Loading
Loading