LordXido commited on
Commit
8e77ffb
Β·
verified Β·
1 Parent(s): 6cfe408

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -17
README.md CHANGED
@@ -6,20 +6,75 @@ emoji: πŸ‘
6
  colorFrom: blue
7
  colorTo: green
8
  ---
9
- # CodexRealityEngine v∞++
10
-
11
- A reflexive symbolic-multimodal engine powered by the Ξ¨Ξ¦Ξ›Ξ©Ξ˜Ξž stack. This Hugging Face interface allows you to send high-level commands to the Jarvis X Engine and receive rendered or interpreted outputs.
12
-
13
- ## Features
14
- - Adaptive Intent Parsing (Ξ¨)
15
- - Symbolic Law Filter (Ξ›)
16
- - Fractal Memory Kernel (Ξ©)
17
- - 3D Render Engine (Θ)
18
- - Reflex Execution (Ξ)
19
- - CLI-compatible via SENSE
20
-
21
- ## Usage
22
- Launch the interface and type commands such as:
23
- - "Render a symbolic spiral"
24
- - "Grow a fractal forest"
25
- - "Simulate agent memory evolution"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  colorFrom: blue
7
  colorTo: green
8
  ---
9
+ # πŸš€ CodexRealityEngine v∞++ β€” Phase VI+
10
+
11
+ **CodexRealityEngine** is a multimodal, reflexive cognition platform powered by:
12
+ - βœ… `Ξ¨` Intent Engine
13
+ - βœ… `Ξ¦` Field Modulation
14
+ - βœ… `Ξ›` Moral Logic Filter
15
+ - βœ… `Ξ©` Recursive Memory System
16
+ - βœ… `Ξ` Reflexive Execution Loop
17
+
18
+ ## πŸ”₯ Live Features (Phase VI+)
19
+ - πŸ” **CodexMesh Node Sync**
20
+ - πŸ“‘ **WebSocket & FastAPI API** via `ws_router.py`
21
+ - 🧠 **Reflex Loop Logic** (`agent_loop.py`)
22
+ - πŸ” **SHA256 Logging via Ξ©Memory**
23
+ - πŸ–ΌοΈ Gradio UI (for triggering live reflexes + rendering symbolic content)
24
+
25
+ ---
26
+
27
+ ## πŸ›  Installation & Run
28
+
29
+ ### πŸ“¦ Dependencies
30
+ Listed in `requirements.txt` (automatically used by Hugging Face Spaces):
31
+ ```
32
+ gradio==4.14.0
33
+ fastapi
34
+ uvicorn
35
+ ```
36
+
37
+ ### ▢️ Launch Instructions (Locally)
38
+ ```bash
39
+ uvicorn app:app --host 0.0.0.0 --port 7860
40
+ ```
41
+
42
+ ### ▢️ Launch Instructions (on Hugging Face)
43
+ 1. Upload all the files:
44
+ - `app.py`
45
+ - `omega_memory.py`
46
+ - `agent_loop.py`
47
+ - `codexmesh_sync.py`
48
+ - `ws_router.py`
49
+ - `requirements.txt`
50
+ 2. Set `app.py` as the entrypoint.
51
+ 3. Done β€” the engine will launch and begin syncing.
52
+
53
+ ---
54
+
55
+ ## πŸ“‘ API Endpoints
56
+
57
+ | Endpoint | Description |
58
+ |------------------|-----------------------------------|
59
+ | `/` | Gradio UI |
60
+ | `/ws/heartbeat` | CodexMesh node heartbeat |
61
+ | `/ws/logs` | Ξ©Memory audit trail |
62
+ | `/ws/echo` | Live message router (debug/test) |
63
+
64
+ ---
65
+
66
+ ## 🧬 System Architecture
67
+
68
+ ```text
69
+ [UI/CLI] β†’ [app.py]
70
+ ↓
71
+ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
72
+ β”‚ Reflex Loopβ”‚ ← agent_loop.py
73
+ β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜
74
+ ↓
75
+ [CodexMesh Sync] ← codexmesh_sync.py
76
+ ↓
77
+ [Ξ© Memory Log] ← omega_memory.py
78
+ ↓
79
+ [API Router] ← ws_router.py
80
+ ```