docs: Remove placeholder logo comment from README#16
Open
hobostay wants to merge 1 commit into
Open
Conversation
Remove the commented-out logo/banner placeholder that was left in from the template. This cleans up the README without making any functional changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
lauren-h-yoon
added a commit
to lauren-h-yoon/HyperAgents
that referenced
this pull request
May 4, 2026
The strict regex r'<json>\s*(\{.*?\})\s*</json>' required both the
opening and closing markup. Reasoning-capable models (observed:
gpt-5.4-mini at medium effort) sometimes emit a structurally
complete JSON object after <json> but drop the closing tag, which
made check_for_tool_uses return [] -> no tool extracted -> the
meta-agent loop exits after a single round. The smoke runs showed
this directly: smoke facebookresearch#14 had 41 rounds, smoke facebookresearch#16 had 1, with the
sole difference being whether the model emitted </json>.
Make the close tag optional via (?:</json>|\Z). The captured JSON
group still has to parse via json.loads, so we don't accept any
malformed payload, just tolerate a missing close tag. Strict-tag
behavior is preserved exactly when the model complies.
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.
Summary
Remove the commented-out logo/banner placeholder that was left in from the template.
Details
The README contained a placeholder comment for a logo image:
This placeholder has been removed to clean up the README. If a logo is added in the future, it can be added without the placeholder comment.
Test plan
🤖 Generated with Claude Code