File size: 450 Bytes
14640e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys
import os

# Add the project directory to path
sys.path.append('/Users/hsiehchin-chuan/Desktop/InfoSec-finalProj/InfoSecAI-finalProj')

try:
    from models import load_models_and_data, AI_READY
    import models
    
    print("Attempting to load models...")
    load_models_and_data()
    print(f"AI_READY: {models.AI_READY}")
except Exception as e:
    print(f"Error during loading: {e}")
    import traceback
    traceback.print_exc()