diff --git a/index.html b/index.html index f0cfa61..e4bd6f1 100644 --- a/index.html +++ b/index.html @@ -284,8 +284,8 @@
A report that explains causality
Machine-readable JSON and a self-contained HTML report come from one redacted report model. The report works offline.
A report that explains causality
Machine-readable JSON and a self-contained HTML report come from one redacted report model. Coverage is explicit and never presented as correctness.
{
- "structural": "pass",
- "semantic": "breaking",
- "first_breaking_edge": {
- "producer": "researcher",
- "consumer": "verifier",
- "contract": "verified_requires_opened_supporting_source"
- },
- "witness": {
- "run": "candidate-003",
- "expected": "opened_sources_count > 0",
- "observed": 0
- },
- "affected": ["verifier", "decision_maker", "publisher"],
- "repair_before": "verifier"
+ "schema_version": "0.3",
+ "structural": { "status": "PASS" },
+ "semantic": {
+ "status": "FAIL",
+ "first_breaking_edge": "researcher_to_verifier",
+ "coverage": { "summary": {
+ "total_graph_edges": 3,
+ "contracted_and_observed": 3,
+ "observed_contract_coverage_percent": 100.0,
+ "coverage_is_correctness": false
+ } },
+ "findings": [{
+ "contract_id": "research_demo:researcher_to_verifier:verified_requires_opened_supporting_source",
+ "affected_downstream_nodes": ["verifier", "decision_maker", "publisher"]
+ }]
+ }
}
Measured technical proof
Current branch measurements, linked to the source that enforces them.
Benchmarks cover synthetic graphs at 10, 100, and 1,000 nodes. They do not establish production scale. Inspect the methodology.
+Recorded model, prompt, and tool migrations plus a ten-case semantic regression corpus exercise the same comparison engine. The corpus is project test data, not an industry benchmark. Inspect every case. Run the reusable GitHub Action.
Local setup
Choose a setup path that works today. GraphABI is installed from Git until the first package release is approved.
Local setup
Choose a setup path that works today. GraphABI is installed from Git until package publication is approved.
Run the deterministic demo without a local install or API key.
uvx --from git+https://github.com/graphabi/graphabi graphabi demo --allow-breakingUse pipx to run the CLI directly from the public repository. GraphABI is not published to PyPI.
pipx run --spec git+https://github.com/graphabi/graphabi graphabi demo --allow-breakingUse the locked development environment for examples, tests, and contribution work.
git clone https://github.com/graphabi/graphabi.git && cd graphabi && uv syncUse the locked development environment for examples, tests, and contribution work.
git clone https://github.com/graphabi/graphabi.git && cd graphabi && make bootstrapInstall GraphABI from Git, then run the included LangGraph research graph or add the adapter to your trace boundary.
uv add "graphabi @ git+https://github.com/graphabi/graphabi"