# -*- coding: utf-8 -*- """ Test version of מראות (Mirrors) app for local development Uses lightweight model to avoid hanging on heavy model loading """ import os # Force lightweight model for local testing os.environ["FORCE_LIGHT_MODEL"] = "1" # Import the main app after setting the environment variable from app import MirautrApp, main if __name__ == "__main__": print("🧪 Running מראות in test mode with lightweight model...") main()