| """ | |
| AETHER: A Self-Evolving Neuro-Symbolic Architecture for AGI | |
| Integrates AlphaEvolve, BabyAGI, HiMAC, GEA, Yunjue Agent, ASI-Evolve, | |
| CoALA, MLPO, Agentic Neural Networks, smolagents, PyG, and TRL. | |
| """ | |
| __version__ = "0.1.0" | |
| from .core import AetherCore | |
| from .memory import CoALAMemory, TemporalMemory | |
| from .evolution import AetherEvolutionEngine | |
| from .agents import AetherAgentOrchestrator, HierarchicalAgent | |
| from .knowledge import KnowledgeGraphEngine | |
| from .safety import SafetySandbox | |
| __all__ = [ | |
| "AetherCore", | |
| "CoALAMemory", | |
| "TemporalMemory", | |
| "AetherEvolutionEngine", | |
| "AetherAgentOrchestrator", | |
| "HierarchicalAgent", | |
| "KnowledgeGraphEngine", | |
| "SafetySandbox", | |
| ] | |