From 86015412ebbfea18ddc1e7b1f4af91d00decd3b0 Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Tue, 5 May 2026 04:41:07 -0700 Subject: [PATCH] build(runtime): register inbox_uploads in TOP_LEVEL_MODULES MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The drift gate in build_runtime_package.py rejects any workspace/*.py module not listed in TOP_LEVEL_MODULES — it would ship un-rewritten and break wheel imports. Add inbox_uploads (introduced in this PR) to the list. --- scripts/build_runtime_package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build_runtime_package.py b/scripts/build_runtime_package.py index f267e173..196463af 100755 --- a/scripts/build_runtime_package.py +++ b/scripts/build_runtime_package.py @@ -69,6 +69,7 @@ TOP_LEVEL_MODULES = { "executor_helpers", "heartbeat", "inbox", + "inbox_uploads", "initial_prompt", "internal_chat_uploads", "internal_file_read",