File size: 572 Bytes
dbb04e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import importlib
import sys
from pathlib import Path

src_path = Path("src").absolute()
sys.path.insert(0, str(src_path))

modules = [
    "core.config",
    "core.hdv",
    "core.binary_hdv",
    "core.node",
    "core.synapse",
    "core.qdrant_store",
    "core.async_storage",
    "core.tier_manager",
    "core.engine",
    "core.router",
]

for mod in modules:
    print(f"Importing {mod}...", end="", flush=True)
    try:
        importlib.import_module(mod)
        print(" OK")
    except Exception as e:
        print(f" FAILED: {e}")