camdog920 commited on
Commit
e0ffdb2
Β·
verified Β·
1 Parent(s): 02f3a07

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -8
README.md CHANGED
@@ -1,12 +1,47 @@
1
  ---
 
 
 
 
2
  sdk: docker
3
- title: Aether Space
4
- emoji: ⚑
5
- colorFrom: pink
6
- colorTo: yellow
7
- pinned: false
8
- tags:
9
- - ml-intern
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: AETHER v0.3.0
3
+ emoji: 🧠
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: docker
7
+ app_port: 7860
 
 
 
 
 
 
8
  ---
9
 
10
+ # AETHER v0.3.0 β€” Autonomous Self-Evolving Architecture
11
+
12
+ A self-evolving neuro-symbolic architecture that runs **24/7 on HuggingFace Spaces**.
13
+ Evolves autonomously in a background thread, persists its full memory and knowledge
14
+ graph state to the HF Hub, and executes reasoning tasks via REST API even when
15
+ browser tabs are closed.
16
+
17
+ ## Architecture
18
+
19
+ - **Neuro-Symbolic Fusion Gate** β€” learned attention over symbolic/neural split
20
+ - **4-Agent Orchestration** β€” Researcher, Engineer, Analyzer, Integrator with learned routing
21
+ - **MAP-Elites Quality-Diversity** β€” behavioral archive for evolutionary search
22
+ - **CoALA 4-Tier Memory** β€” Working, Episodic, Semantic, Procedural
23
+ - **Temporal Memory** β€” recency-weighted long-horizon context
24
+ - **Knowledge Graph** β€” RGCN + ComplEx + symbolic rule engine
25
+ - **AutoOversight** β€” automated regression gating + risk scoring + auto-rollback (zero human oversight)
26
+ - **Background Evolution** β€” continuous improvement in a daemon thread
27
+ - **State Persistence** β€” CommitScheduler auto-pushes checkpoints to `camdog920/aether-state`
28
+
29
+ ## API Endpoints
30
+
31
+ | Method | Path | Description |
32
+ |--------|------|-------------|
33
+ | GET | `/` | Gradio monitoring dashboard |
34
+ | GET | `/status` | Live system state |
35
+ | POST | `/task` | Submit async reasoning task |
36
+ | GET | `/task/{id}` | Get task result |
37
+ | POST | `/evolve` | Trigger 1 evolution cycle |
38
+ | GET | `/history` | Evolution trajectory |
39
+ | GET | `/kg` | Knowledge graph dump |
40
+ | POST | `/kg/fact` | Add fact to knowledge graph |
41
+ | POST | `/config` | Update evolution config |
42
+ | GET | `/snapshot` | Force save state |
43
+
44
+ ## Environment Variables
45
+
46
+ - `HF_TOKEN` β€” Write-scoped token (set in Space secrets)
47
+ - `AETHER_STATE_REPO` β€” Model repo for state persistence (default: `camdog920/aether-state`)