Skip to content

Commit 1d5bb6a

Browse files
Embed the decomposition demo in the README, excluded from the sdist
A 740KB GIF (with the full-quality mp4 beside it) of a real session: a local model decomposes one English question into a nine-node graph with four parallel pulls, the plan parks grey awaiting approval, and each node runs amber-then-green in the live view. GIF because GitHub strips <video> and only auto-plays its own upload URLs — an image renders everywhere, PyPI included. docs/media is excluded from the build (mirrored in MANIFEST.in): a pip install has no use for it. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent aea6ee7 commit 1d5bb6a

5 files changed

Lines changed: 8 additions & 0 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ global-exclude *.sqlite
3232
global-exclude *.jsonl
3333
global-exclude /HANDOFF.md
3434
global-exclude /.grapharc
35+
global-exclude /docs/media

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Build production-grade multi-agent systems with built-in safety, auditability, a
1111

1212
**Status:** Early days (`0.1.2`) — the API is not stable yet. `pip install grapharc` — see [Install](#install).
1313

14+
![One English question is decomposed by a local model into a nine-node graph — four parallel evidence pulls fanning out of START, a correlate join, a hypothesis fork, and a final report — shown live in the browser: the proposed graph waits grey for human approval, then each node turns amber while it runs and green when it is done.](docs/media/grapharc-decompose.gif)
15+
16+
*One question in, a governed graph out: a local model proposes the topology, the admission gate and a human approval decide, and the live view shows every node run — amber while executing, green when done. ([full-quality mp4](docs/media/grapharc-decompose.mp4))*
17+
1418
### What makes GraphARC different
1519

1620
- **Admission gate**: All runtime topology changes go through deterministic approval before execution

docs/media/grapharc-decompose.gif

739 KB
Loading

docs/media/grapharc-decompose.mp4

345 KB
Binary file not shown.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ exclude = [
150150
# `ignore-vcs` is on — this line is the only thing that does.
151151
"/HANDOFF.md",
152152
"/.grapharc",
153+
# Demo footage embedded in the README. GitHub renders it; a pip install
154+
# has no use for megabytes of GIF, so it stays out of the sdist.
155+
"/docs/media",
153156
]
154157

155158
# `packages` is recursive: every subpackage under `grapharc/` ships without

0 commit comments

Comments
 (0)