diff --git a/agent_v0/server_v1/api_stream.py b/agent_v0/server_v1/api_stream.py index 9ef079aed..e89d278b4 100644 --- a/agent_v0/server_v1/api_stream.py +++ b/agent_v0/server_v1/api_stream.py @@ -2372,9 +2372,12 @@ async def stream_image( # Le fichier brut (shot_XXXX_full.png) reste intact pour le replay, # le grounding VLM et l'entraînement. La version floutée est écrite en # parallèle sous shot_XXXX_full_blurred.png. + # focus_* : plein écran avec PII dans les titres (blind spot Qwen 28/06, + # 1440 fichiers/350 Mo non floutés) — désormais inclus dans le blur. if _PII_BLUR_ENABLED and _blur_pii_on_image is not None and ( ("_full" in shot_id and shot_id.startswith("shot_")) or shot_id.startswith("heartbeat_") + or shot_id.startswith("focus_") ): _pii_blur_executor.submit(_produce_blurred_version, file_path_str, shot_id)