From 49c2f578b4693765c53120b2a47fef07ff771243 Mon Sep 17 00:00:00 2001 From: Bentlybro Date: Thu, 12 Feb 2026 11:58:35 +0000 Subject: [PATCH] docs: Update llm.md for binary file support in Claude Code block --- docs/integrations/block-integrations/llm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/block-integrations/llm.md b/docs/integrations/block-integrations/llm.md index 20a5147fcd..9a9e29f23a 100644 --- a/docs/integrations/block-integrations/llm.md +++ b/docs/integrations/block-integrations/llm.md @@ -535,7 +535,7 @@ When activated, the block: 2. Installs the latest version of Claude Code in the sandbox 3. Optionally runs setup commands to prepare the environment 4. Executes your prompt using Claude Code, which can create/edit files, install dependencies, run terminal commands, and build applications -5. Extracts all text files created/modified during execution +5. Extracts all text and binary files created/modified during execution 6. Returns the response and files, optionally keeping the sandbox alive for follow-up tasks The block supports conversation continuation through three mechanisms: @@ -563,7 +563,7 @@ The block supports conversation continuation through three mechanisms: |--------|-------------|------| | error | Error message if execution failed | str | | response | The output/response from Claude Code execution | str | -| files | List of text files created/modified by Claude Code during this execution. Each file has 'path', 'relative_path', 'name', and 'content' fields. | List[FileOutput] | +| files | List of files created/modified by Claude Code during this execution. Each file includes path, relative_path, name, content, is_binary, and content_base64 fields. For text files, content contains the text and is_binary is False. For binary files (PDFs, images, etc.), is_binary is True and content_base64 contains the base64-encoded data. | List[FileOutput] | | conversation_history | Full conversation history including this turn. Pass this to conversation_history input to continue on a fresh sandbox if the previous sandbox timed out. | str | | session_id | Session ID for this conversation. Pass this back along with sandbox_id to continue the conversation. | str | | sandbox_id | ID of the sandbox instance. Pass this back along with session_id to continue the conversation. This is None if dispose_sandbox was True (sandbox was disposed). | str |