Spaces:
Running
Running
File size: 327 Bytes
c573327 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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()
|