Spaces:
Runtime error
Runtime error
fix
Browse files- AICoreAGIX_with_TB.py +5 -5
AICoreAGIX_with_TB.py
CHANGED
|
@@ -36,11 +36,11 @@ from codette_bridge import CodetteBridge # <= NEW
|
|
| 36 |
|
| 37 |
class AICoreAGIX:
|
| 38 |
def __init__(self, config_path: str = "config.json"):
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
|
| 45 |
try:
|
| 46 |
self.tokenizer = AutoTokenizer.from_pretrained(
|
|
|
|
| 36 |
|
| 37 |
class AICoreAGIX:
|
| 38 |
def __init__(self, config_path: str = "config.json"):
|
| 39 |
+
self.self_trust_core = SelfTrustCore()
|
| 40 |
+
self.ethical_filter = EthicalFilter()
|
| 41 |
+
self.failsafe_system = AIFailsafeSystem()
|
| 42 |
+
self.config = self._load_config(config_path)
|
| 43 |
+
self._load_or_generate_id_lock()
|
| 44 |
|
| 45 |
try:
|
| 46 |
self.tokenizer = AutoTokenizer.from_pretrained(
|