shim5/mirrors
0
1# -*- coding: utf-8 -*-2"""3Test version of מראות (Mirrors) app for local development4Uses lightweight model to avoid hanging on heavy model loading5"""6 7import os8# Force lightweight model for local testing9os.environ["FORCE_LIGHT_MODEL"] = "1"10 11# Import the main app after setting the environment variable12from app import MirautrApp, main13 14if __name__ == "__main__":15 print("🧪 Running מראות in test mode with lightweight model...")16 main() 