feat(gateway): Updated the skill description & adding native media attachment support for the Yuanbao platform#17411
Closed
loongfay wants to merge 3 commits into
Closed
feat(gateway): Updated the skill description & adding native media attachment support for the Yuanbao platform#17411loongfay wants to merge 3 commits into
loongfay wants to merge 3 commits into
Conversation
added 3 commits
April 28, 2026 15:39
…achment support for the Yuanbao platform
…achment support for the Yuanbao platform
teknium1
pushed a commit
that referenced
this pull request
Apr 29, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of #17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
Contributor
|
Salvaged via #17424 — your |
donald131
pushed a commit
to donald131/hermes-agent
that referenced
this pull request
May 2, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
02356abc
pushed a commit
to 02356abc/hermes-agent
that referenced
this pull request
May 14, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
jsboige
pushed a commit
to jsboige/hermes-agent
that referenced
this pull request
May 14, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
dannyJ848
pushed a commit
to dannyJ848/hermes-agent
that referenced
this pull request
May 17, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
gweeteve
pushed a commit
to gweeteve/hermes-agent
that referenced
this pull request
Jun 2, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
Egavasyug
pushed a commit
to Egavasyug/hermes-agent
that referenced
this pull request
Jun 10, 2026
_send_yuanbao() already supported media_files= and the user-facing error strings already advertised yuanbao support, but there was no dispatch branch in _send_to_platform() actually routing to it. Target yuanbao in send_message previously fell through to "Direct sending not yet implemented". - Add yuanbao media-chunk branch (mirrors Signal/Matrix: media on final chunk only). - Add yuanbao elif in the non-media loop. Salvage of NousResearch#17411; SKILL.md description change and redundant sidebars.ts entry dropped, indentation/trailing-whitespace cleaned up.
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.
SKILL.md: Updated the skill description from the original "Yuanbao (元宝) groups: @mention users, query info/members." to a more concise "Yuanbao (元宝) group interaction — @mention users, query group info and members".
send_message_tool.py: Major changes adding native media attachment support for the Yuanbao platform:
Added media_files parameter support in YUANBAO platform processing logic
Added conditional logic to use specialized sending logic when the platform is YUANBAO and media files are present
Implemented chunked message sending with media attachments included in the final chunk
These modifications primarily enhance the media file sending capability of the Yuanbao platform, enabling better handling of messages with attachments.