How to upload files and share them with subagents? #4539
Replies: 1 comment
|
Yes, use the DeepAgents filesystem/backend as the handoff point. Subagents are intentionally started with isolated context windows, and the subagent middleware excludes The usual pattern is: upload or decode the file in the parent, write it to the agent filesystem ( So for local/dev usage, |
Uh oh!
There was an error while loading. Please reload this page.
Is there a canonical way on how to upload files to an agent and share the files with subagents? It seems that file data is stripped from the context, when a subagent is initialized. So is the only way to do it via a FilesystemBackend?
All reactions