Upload aether/__init__.py
Browse files- aether/__init__.py +25 -0
aether/__init__.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
AETHER: A Self-Evolving Neuro-Symbolic Architecture for AGI
|
| 3 |
+
Integrates AlphaEvolve, BabyAGI, HiMAC, GEA, Yunjue Agent, ASI-Evolve,
|
| 4 |
+
CoALA, MLPO, Agentic Neural Networks, smolagents, PyG, and TRL.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
__version__ = "0.1.0"
|
| 8 |
+
|
| 9 |
+
from .core import AetherCore
|
| 10 |
+
from .memory import CoALAMemory, TemporalMemory
|
| 11 |
+
from .evolution import AetherEvolutionEngine
|
| 12 |
+
from .agents import AetherAgentOrchestrator, HierarchicalAgent
|
| 13 |
+
from .knowledge import KnowledgeGraphEngine
|
| 14 |
+
from .safety import SafetySandbox
|
| 15 |
+
|
| 16 |
+
__all__ = [
|
| 17 |
+
"AetherCore",
|
| 18 |
+
"CoALAMemory",
|
| 19 |
+
"TemporalMemory",
|
| 20 |
+
"AetherEvolutionEngine",
|
| 21 |
+
"AetherAgentOrchestrator",
|
| 22 |
+
"HierarchicalAgent",
|
| 23 |
+
"KnowledgeGraphEngine",
|
| 24 |
+
"SafetySandbox",
|
| 25 |
+
]
|