Spaces:
Runtime error
Runtime error
Update components/CodriaoCore.py
Browse files
components/CodriaoCore.py
CHANGED
@@ -24,7 +24,7 @@ from components.multi_model_analyzer import MultiAgentSystem
|
|
24 |
|
25 |
# Codriao's enhanced modules
|
26 |
from codriao_tb_module import CodriaoHealthModule
|
27 |
-
from secure_memory_loader import
|
28 |
from ethical_filter import EthicalFilter
|
29 |
from results_store import save_result
|
30 |
|
@@ -46,8 +46,8 @@ class CodriaoCore:
|
|
46 |
self.database = Database()
|
47 |
|
48 |
# 🧠 Replace static SecureMemory with dynamic, temp version
|
49 |
-
|
50 |
-
|
51 |
|
52 |
# Cognitive & ethical subsystems
|
53 |
self.sentiment_analyzer = EnhancedSentimentAnalyzer()
|
|
|
24 |
|
25 |
# Codriao's enhanced modules
|
26 |
from codriao_tb_module import CodriaoHealthModule
|
27 |
+
from secure_memory_loader import load_secure_memory_module
|
28 |
from ethical_filter import EthicalFilter
|
29 |
from results_store import save_result
|
30 |
|
|
|
46 |
self.database = Database()
|
47 |
|
48 |
# 🧠 Replace static SecureMemory with dynamic, temp version
|
49 |
+
secure_memory_module = load_secure_memory_module()
|
50 |
+
SecureMemorySession = secure_memory_module.SecureMemorySession
|
51 |
|
52 |
# Cognitive & ethical subsystems
|
53 |
self.sentiment_analyzer = EnhancedSentimentAnalyzer()
|