DAG Explorer

Upload JSONL data and visualize directed acyclic graphs in real-time

Upload Data

Supported formats: JSONL text, JSONL array, edge lists, adjacency lists, and NetworkX formats

Visualization

Upload JSONL data to see visualization

Supported Data Formats

JSONL Format

// Nodes
{"type": "node", "id": "A", "label": "Node A"}
{"type": "node", "id": "B", "label": "Node B"}
{"type": "node", "id": "C", "label": "Node C"}

// Edges
{"type": "edge", "source": "A", "target": "B"}
{"type": "edge", "source": "B", "target": "C"}
{"type": "edge", "source": "A", "target": "C"}

Other Formats

Adjacency List: {"A": ["B", "C"], "B": ["D"]}

Edge List Array: [{source: "A", target: "B"}]

NetworkX: {directed: true, nodes: [...], links: [...]}

The transformer auto-detects your format!