From 01869419a56cc407d770b9d22219913164bfe14b Mon Sep 17 00:00:00 2001 From: Mergen Nachin Date: Wed, 18 Mar 2026 09:43:29 -0400 Subject: [PATCH] Clean up Voxtral Realtime HF weights after export The downloaded model_weights/ directory (~20GB) was not removed after export, causing it to be uploaded to S3 as part of the CI artifact. Delete it after copying out the tokenizer since the weights are fully baked into the .pte at that point. --- .ci/scripts/export_model_artifact.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/scripts/export_model_artifact.sh b/.ci/scripts/export_model_artifact.sh index 9d73c394f2a..c06dcdae6f5 100755 --- a/.ci/scripts/export_model_artifact.sh +++ b/.ci/scripts/export_model_artifact.sh @@ -373,6 +373,7 @@ if [ "$MODEL_NAME" = "voxtral_realtime" ]; then fi # Copy tokenizer from downloaded model weights cp "$LOCAL_MODEL_DIR/tekken.json" "${OUTPUT_DIR}/tekken.json" + rm -rf "$LOCAL_MODEL_DIR" ls -al "${OUTPUT_DIR}" echo "::endgroup::" exit 0