This repository was archived by the owner on Apr 30, 2026. It is now read-only.
Add file upload from local path for binary file support#34
Open
takachaa wants to merge 1 commit into
Open
Conversation
…munity#33) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
box_file_upload_from_path_toolthat accepts a local file path to upload to BoxChanges
src/tools/box_tools_file_transfer.py: Newbox_file_upload_from_path_toolfunction that reads a local file in binary mode and uploads via existingbox_file_upload()src/tool_registry/file_transfer_tools.py: Register the new toolHow it works
The existing
box_file_upload_toolrequires content to be passed asstr | bytesinline, which causes binary files to be corrupted when AI agents serialize them. The new tool takes a file path instead, reads the file inrbmode, and delegates to the existing upload function — preserving binary integrity.Test plan
.pptxfile viabox_file_upload_from_path_tool— verified working.xlsxfile — verified workingbox_file_upload_toolstill works unchanged🤖 Generated with Claude Code