Skip to content

Commit ce9cc71

Browse files
SStasclaude
andcommitted
Add SVG diagram, replace mermaid chart in README
Move how_it_works_diagram.svg to assets/ folder (standard convention). Replace 14-line mermaid code block with <img> at 50% width. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c29c313 commit ce9cc71

File tree

2 files changed

+106
-15
lines changed

2 files changed

+106
-15
lines changed

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,7 @@ Full results: **[Benchmarks](docs/BENCHMARKS.md)** – 7 benchmarks, 5 models, 2
8383

8484
## How It Works
8585

86-
```mermaid
87-
graph LR
88-
subgraph text["Text Handoff"]
89-
direction LR
90-
A1["Agent A generates text"] -->|"serialize, re-tokenize"| B1["Agent B re-processes from scratch"]
91-
end
92-
93-
subgraph avp["AVP Transfer"]
94-
direction LR
95-
A2["Agent A builds KV-cache"] -->|"binary transfer"| B2["Agent B continues from cached state"]
96-
end
97-
98-
style text fill:#fff3f3,stroke:#d44,stroke-width:2px
99-
style avp fill:#f3fff3,stroke:#4a4,stroke-width:2px
100-
```
86+
<img src="assets/how_it_works_diagram.svg" alt="How AVP works" width="50%">
10187

10288
AVP auto-negotiates the transfer mode via a handshake at connection time. You write the same `think()` / `generate()` code regardless of which mode is selected:
10389

0 commit comments

Comments
 (0)