File size: 1,915 Bytes
b0ae08f
e0ffdb2
 
 
 
0e3073f
e0ffdb2
5d900d9
 
b0ae08f
 
e0ffdb2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: AETHER v0.3.0
emoji: 🧠
colorFrom: blue
colorTo: purple
sdk: docker
app_port: 7860
tags:
- ml-intern
---

# AETHER v0.3.0 β€” Autonomous Self-Evolving Architecture

A self-evolving neuro-symbolic architecture that runs **24/7 on HuggingFace Spaces**.
Evolves autonomously in a background thread, persists its full memory and knowledge 
graph state to the HF Hub, and executes reasoning tasks via REST API even when 
browser tabs are closed.

## Architecture

- **Neuro-Symbolic Fusion Gate** β€” learned attention over symbolic/neural split
- **4-Agent Orchestration** β€” Researcher, Engineer, Analyzer, Integrator with learned routing
- **MAP-Elites Quality-Diversity** β€” behavioral archive for evolutionary search
- **CoALA 4-Tier Memory** β€” Working, Episodic, Semantic, Procedural
- **Temporal Memory** β€” recency-weighted long-horizon context
- **Knowledge Graph** β€” RGCN + ComplEx + symbolic rule engine
- **AutoOversight** β€” automated regression gating + risk scoring + auto-rollback (zero human oversight)
- **Background Evolution** β€” continuous improvement in a daemon thread
- **State Persistence** β€” CommitScheduler auto-pushes checkpoints to `camdog920/aether-state`

## API Endpoints

| Method | Path | Description |
|--------|------|-------------|
| GET | `/` | Gradio monitoring dashboard |
| GET | `/status` | Live system state |
| POST | `/task` | Submit async reasoning task |
| GET | `/task/{id}` | Get task result |
| POST | `/evolve` | Trigger 1 evolution cycle |
| GET | `/history` | Evolution trajectory |
| GET | `/kg` | Knowledge graph dump |
| POST | `/kg/fact` | Add fact to knowledge graph |
| POST | `/config` | Update evolution config |
| GET | `/snapshot` | Force save state |

## Environment Variables

- `HF_TOKEN` β€” Write-scoped token (set in Space secrets)
- `AETHER_STATE_REPO` β€” Model repo for state persistence (default: `camdog920/aether-state`)