petter2025 commited on
Commit
129b05b
·
verified ·
1 Parent(s): 6da229d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -34,6 +34,10 @@ from agentic_reliability_framework.core.governance.healing_intent import (
34
  logging.basicConfig(level=logging.INFO)
35
  logger = logging.getLogger(__name__)
36
 
 
 
 
 
37
  # ========================= FASTAPI APP =========================
38
  fastapi_app = FastAPI(title="ARF v4 API")
39
 
 
34
  logging.basicConfig(level=logging.INFO)
35
  logger = logging.getLogger(__name__)
36
 
37
+ import pkgutil
38
+ import agentic_reliability_framework.core.governance as governance
39
+ print("Contents of governance module:", [name for _, name, _ in pkgutil.iter_modules(governance.__path__)])
40
+
41
  # ========================= FASTAPI APP =========================
42
  fastapi_app = FastAPI(title="ARF v4 API")
43