Skip to content

Commit 751780f

Browse files
authored
Merge pull request #128 from Steake/copilot/implement-self-modification-engine
feat: Implement SelfModificationEngine with REST API (issue #95)
2 parents 55262b4 + a52067a commit 751780f

4 files changed

Lines changed: 1189 additions & 13 deletions

File tree

backend/core/__init__.py

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,20 @@
66
- AgenticDaemonSystem: Autonomous background processing and system evolution
77
"""
88

9-
from .cognitive_manager import CognitiveManager, get_cognitive_manager
10-
from .agentic_daemon_system import AgenticDaemonSystem, get_agentic_daemon_system
9+
import logging as _logging
1110

12-
__all__ = [
13-
"CognitiveManager",
14-
"get_cognitive_manager",
15-
"AgenticDaemonSystem",
16-
"get_agentic_daemon_system"
17-
]
11+
try:
12+
from .cognitive_manager import CognitiveManager, get_cognitive_manager
13+
from .agentic_daemon_system import AgenticDaemonSystem, get_agentic_daemon_system
14+
15+
__all__ = [
16+
"CognitiveManager",
17+
"get_cognitive_manager",
18+
"AgenticDaemonSystem",
19+
"get_agentic_daemon_system",
20+
]
21+
except ImportError as _exc:
22+
_logging.getLogger(__name__).warning(
23+
"Core architecture imports unavailable (optional dependency missing): %s", _exc
24+
)
25+
__all__ = []

0 commit comments

Comments
 (0)