Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ global-exclude *.sqlite
global-exclude *.jsonl
global-exclude /HANDOFF.md
global-exclude /.grapharc
global-exclude /docs/media
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Build production-grade multi-agent systems with built-in safety, auditability, a

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

![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)

*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))*

### What makes GraphARC different

- **Admission gate**: All runtime topology changes go through deterministic approval before execution
Expand Down
Binary file added docs/media/grapharc-decompose.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/media/grapharc-decompose.mp4
Binary file not shown.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ exclude = [
# `ignore-vcs` is on — this line is the only thing that does.
"/HANDOFF.md",
"/.grapharc",
# Demo footage embedded in the README. GitHub renders it; a pip install
# has no use for megabytes of GIF, so it stays out of the sdist.
"/docs/media",
]

# `packages` is recursive: every subpackage under `grapharc/` ships without
Expand Down
Loading