From 4f49985cd57453a22f7fa333a03677533b38fa67 Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 25 Feb 2026 15:39:29 +0000 Subject: [PATCH] Enable JAX compilation for streaming tasks The StreamInterpreter was created without use_jax=True, so the JAX compiler was never activated for production rendering. Desktop testing had this enabled but the celery task path did not. Co-Authored-By: Claude Opus 4.6 --- l1/tasks/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l1/tasks/streaming.py b/l1/tasks/streaming.py index 7ac6057..3195921 100644 --- a/l1/tasks/streaming.py +++ b/l1/tasks/streaming.py @@ -354,7 +354,7 @@ def run_stream( checkpoint = None # Create interpreter (pass actor_id for friendly name resolution) - interp = StreamInterpreter(str(recipe_path), actor_id=actor_id) + interp = StreamInterpreter(str(recipe_path), actor_id=actor_id, use_jax=True) # Set primitive library directory explicitly interp.primitive_lib_dir = sexp_effects_dir / "primitive_libs"