Problem
OPSIIE_0_3_80_XP.py imports transformers (BLIP), diffusers, torch, torchaudio, face_recognition, DeepFace, etc. at module top (lines ~10–41). docs/ARCHITECTURE.md already calls out “heavy imports first.” This hurts time-to-interactive and headless/CI scenarios.
Goal
Lazy-import or factory-init for expensive stacks (e.g. BLIP URL vision, Stable Diffusion /video, music) on first use, with clear logging when a stack is loading.
Acceptance criteria
Problem
OPSIIE_0_3_80_XP.pyimportstransformers(BLIP),diffusers,torch,torchaudio,face_recognition,DeepFace, etc. at module top (lines ~10–41).docs/ARCHITECTURE.mdalready calls out “heavy imports first.” This hurts time-to-interactive and headless/CI scenarios.Goal
Lazy-import or factory-init for expensive stacks (e.g. BLIP URL vision, Stable Diffusion
/video, music) on first use, with clear logging when a stack is loading.Acceptance criteria
docs/TROUBLESHOOTING.mdor architecture doc.