Skip to content

Commit ae34d66

Browse files
committed
fix: Replace Mermaid diagram in README with ASCII art
- GitHub Mermaid renderer was failing (chunk 2291 error) - Replaced with clean ASCII flowchart - Maintains visual clarity without dependencies
1 parent 595f927 commit ae34d66

1 file changed

Lines changed: 26 additions & 9 deletions

File tree

README.md

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,32 @@ It treats the LLM as an **untrusted translator** and verifies its output using *
136136
> *"If an AI writes code, QWED runs the security audit.*
137137
> *If an AI does math, QWED runs the calculus."*
138138
139-
```mermaid
140-
graph LR
141-
User[User Query] --> LLM[LLM - The Guesser]
142-
LLM -.->|Unverified Output| QWED{QWED Protocol}
143-
QWED -->|❌ Hallucination| LLM
144-
QWED -->|✅ Mathematically Proven| App[Your Application]
145-
146-
style QWED fill:#00C853,stroke:#333,stroke-width:2px,color:white
147-
style LLM fill:#FF5252,stroke:#333,stroke-width:2px,color:white
139+
140+
```
141+
┌──────────────┐
142+
│ User Query │
143+
└──────┬───────┘
144+
145+
146+
┌──────────────────┐
147+
│ LLM (The Guesser)│
148+
│ GPT-4 / Claude │
149+
└──────┬───────────┘
150+
│ Unverified Output
151+
152+
┌────────────────────┐
153+
│ QWED Protocol │
154+
│ (Verification) │
155+
└──────┬─────────────┘
156+
157+
┌───┴────┐
158+
▼ ▼
159+
❌ Reject ✅ Verified
160+
161+
162+
┌────────────────┐
163+
│ Your Application│
164+
└────────────────┘
148165
```
149166

150167
---

0 commit comments

Comments
 (0)