PeacebinfLow commited on
Commit
a069e3a
·
verified ·
1 Parent(s): de953b5

Create ARCHITECTURE.md

Browse files
Files changed (1) hide show
  1. docs/ARCHITECTURE.md +26 -0
docs/ARCHITECTURE.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MindsEye Sandbox FlowStudio — Architecture
2
+
3
+ ## Layers
4
+
5
+ 1. **UI Layer (`app_02/`)**
6
+ - Gradio Blocks app
7
+ - Two main tabs:
8
+ - Chat
9
+ - Flow Studio
10
+
11
+ 2. **Engine Layer (`engine_03/`)**
12
+ - `knowledge/` — local MindsEye knowledge base.
13
+ - `flow/` — flow graph models, Mermaid rendering, and simulation.
14
+
15
+ 3. **Data Layer (`flows_04/`)**
16
+ - JSON flow definitions used by the Flow Studio.
17
+ - Later: user-created flows for different MindsEye scenarios.
18
+
19
+ 4. **Config Layer (`config_05/`)**
20
+ - Simple Python settings.
21
+ - Example Space configuration references.
22
+
23
+ 5. **Assets (`assets_07/`)**
24
+ - Thumbnail and logos for the Space and documentation.
25
+
26
+ The entire system is local-only: no external APIs are called.