SwarmDX commited on
Commit
2bcb410
·
verified ·
1 Parent(s): fa0c6ff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: odbl
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ tags:
6
+ - crypto
7
+ - terminal
8
+ - dashboard
9
+ - swarm
10
+ - nanobots
11
+ - inference
12
+ - huggingface
13
+ pipeline_tag: text-generation
14
+ library_name: nextjs
15
+ ---
16
+
17
+ # SWARMDX // Nano-Swarm Intel Console
18
+
19
+ > **A hacker-style terminal that simulates a nano-swarm of micro-bots** to transform raw crypto text into structured intel: **summary, keywords, claims, risks, glossary, and a final memo**.
20
+
21
+ **Status:** `ALPHA`
22
+ **UI Theme:** terminal / scanlines / neon grid
23
+ **Inference:** Hugging Face Router (optional) + mock mode fallback
24
+
25
+ ---
26
+
27
+ ## ⚡ What is SWARMDX?
28
+
29
+ SWARMDX is a **visual-first research console**.
30
+ You paste a tweet / announcement / thesis and **deploy a swarm** of nano-units:
31
+
32
+ - **Scout** → detects topic + context
33
+ - **Narrative** → extracts keywords/themes
34
+ - **Claim** → lists explicit assertions
35
+ - **Risk** → flags hype / urgency / gaps (text-only evidence)
36
+ - **Glossary** → defines key terms
37
+ - **Assembler** → compiles a clean terminal memo
38
+
39
+ No live market data. No buy/sell calls. Pure **text intelligence**.
40
+
41
+ ---
42
+
43
+ ## 🧠 Demo Output Contract (JSON)
44
+
45
+ SWARMDX expects this structure from inference:
46
+
47
+ ```json
48
+ {
49
+ "summary": "string",
50
+ "keywords": ["string"],
51
+ "claims": ["string"],
52
+ "risks": ["string"],
53
+ "glossary": [{"term":"string","def":"string"}],
54
+ "checklist": ["string"],
55
+ "final_memo": "string"
56
+ }