Raiff1982 commited on
Commit
caa247a
·
verified ·
1 Parent(s): 77ba5a4

Update AICoreAGIX_with_TB.py

Browse files
Files changed (1) hide show
  1. AICoreAGIX_with_TB.py +3 -2
AICoreAGIX_with_TB.py CHANGED
@@ -29,7 +29,7 @@ from fail_safe import AIFailsafeSystem
29
  from quarantine_engine import QuarantineEngine
30
  from anomaly_score import AnomalyScorer
31
  from ethics_core import EthicsCore
32
-
33
 
34
  class AICoreAGIX:
35
  def __init__(self, config_path: str = "config.json"):
@@ -47,7 +47,8 @@ class AICoreAGIX:
47
  self.federated_ai = FederatedAI()
48
  self.failsafe_system = AIFailsafeSystem()
49
  self.ethics_core = EthicsCore()
50
-
 
51
  # Trust & journal
52
  self._codriao_key = self._generate_codriao_key()
53
  self._fernet_key = Fernet.generate_key()
 
29
  from quarantine_engine import QuarantineEngine
30
  from anomaly_score import AnomalyScorer
31
  from ethics_core import EthicsCore
32
+ from autonomy_engine import AutonomyEngine
33
 
34
  class AICoreAGIX:
35
  def __init__(self, config_path: str = "config.json"):
 
47
  self.federated_ai = FederatedAI()
48
  self.failsafe_system = AIFailsafeSystem()
49
  self.ethics_core = EthicsCore()
50
+ self.autonomy = AutonomyEngine()
51
+
52
  # Trust & journal
53
  self._codriao_key = self._generate_codriao_key()
54
  self._fernet_key = Fernet.generate_key()