mirrors / test_app.py
Shim
.
f095630
raw
history blame contribute delete
461 Bytes
# -*- 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()