Upload JSONL data and visualize directed acyclic graphs in real-time
Supported formats: JSONL text, JSONL array, edge lists, adjacency lists, and NetworkX formats
Upload JSONL data to see visualization
// 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"}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!