import sys import os # Add current directory to path sys.path.append(os.getcwd()) print("Attempting to import haven_ai.main...") try: from haven_ai.main import app print("Import successful!") except Exception as e: print("CRITICAL ERROR DURING IMPORT:") import traceback traceback.print_exc()