fix(relay): upgrade to 0.7.1 - #81203
Merged
Merged
Conversation
Signed-off-by: Bryan Bednarski <bbednarski@nvidia.com>
bbednarski9
marked this pull request as ready for review
August 7, 2026 16:44
jquesnelle
approved these changes
Aug 7, 2026
randlee
pushed a commit
to randlee/hermes-agent
that referenced
this pull request
Aug 11, 2026
fix(relay): upgrade to 0.7.1
33hodl
pushed a commit
to 33hodl/hermes-agent
that referenced
this pull request
Aug 12, 2026
fix(relay): upgrade to 0.7.1
This was referenced Aug 19, 2026
melon-xf
added a commit
to melon-xf/hermes-agent
that referenced
this pull request
Sep 3, 2026
fix(relay): upgrade to 0.7.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Upgrades Hermes's NeMo Relay requirement from
>=0.6.0,<0.7to>=0.7.1,<0.8and refreshesuv.lockto the published 0.7.1 wheels.This is intentionally limited to the dependency upgrade. It does not include the plugin-initialization or dynamic-plugin work from #77915.
Relay 0.6 can starve its shared Tokio worker pool after timed-out concurrent tool callbacks remain blocked. A later Relay-managed sequential tool call then cannot enter its Python callback, leaving the Hermes turn permanently stuck. Relay 0.7 dispatches Python callbacks on their originating Python event loop instead, so a later managed call can proceed even while earlier callbacks remain blocked.
This resolves the confirmed cross-call starvation mechanism in #79568. It does not identify or make cancellable the original operation that caused the first tools to block; that remains separate root-cause work.
Related Issue
Fixes #79568
Type of Change
Changes Made
pyproject.toml: requirenemo-relay>=0.7.1,<0.8on Hermes's supported Relay wheel targets.uv.lock: resolve the publishednemo-relay 0.7.1distribution and platform wheels.How to Test
uv lock --check.uv.lockresolvesnemo-relayto0.7.1.Checklist
Code
fix(scope):,feat(scope):, etc.)pytest tests/ -qand all tests passuv lock --check)Documentation & Housekeeping
docs/, docstrings) — N/A; dependency-only upgradecli-config.yaml.exampleif I added/changed config keys — N/ACONTRIBUTING.mdorAGENTS.mdif I changed architecture or workflows — N/AFor New Skills
Not applicable.
Screenshots / Logs