hermes - 💡(How to fix) Fix Feature: Allow configuring retry count and interval for web tool HTTP 429 handling [1 pull requests]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Fix Action

Fixed

Code Example

tools:
  web:
    retry_count: 4
    retry_interval: 15
    retry_on_429: true
RAW_BUFFERClick to expand / collapse

Problem

The Hermes web tool has built-in auto-retry for HTTP 429, but the retry behavior cannot be configured:

  • Retry count is fixed (not configurable)
  • Retry interval is fixed (no configurable wait time between retries)
  • When retry exhausts, there is no way to specify custom backoff

This makes it impossible to implement custom retry strategies (e.g., 4 retries with 15s interval) without bypassing the web tool entirely.

Use Case

For NVIDIA API (40 RPM per account, shared quota), a predictable retry pattern is needed:

429 → wait 15s → retry (x4)

The current web tool auto-retry bypasses any wait logic in the agent prompt.

Proposed Solution

Add optional parameters to config.yaml:

tools:
  web:
    retry_count: 4
    retry_interval: 15
    retry_on_429: true

Or expose per-call parameters in the tool call payload.

Alternatives

  1. Bypass web tool entirely with terminal script (loses HTML parsing features)
  2. Fork Hermes web tool (not maintainable)
  3. Write retry into agent prompt (does not work — tool layer bypasses prompt)

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix Feature: Allow configuring retry count and interval for web tool HTTP 429 handling [1 pull requests]