study-buddy / app /agents /d3 /templates /_graph.py
GitHub Actions
deploy d092bea3608b7a29952f16357fda39b7a29e399b
2e818da
Raw
History Blame Contribute Delete
533 Bytes
"""Shared schema for the network-family D3 templates
(network_force_graph, network_arc_diagram, network_chord, network_adjacency_matrix).
Not registered itself — imported by each network template module.
"""
from __future__ import annotations
from pydantic import BaseModel, Field
class GraphNode(BaseModel):
id: str
group: str = ""
class GraphLink(BaseModel):
source: str
target: str
value: float = 1
class GraphData(BaseModel):
title: str = ""
nodes: list[GraphNode]
links: list[GraphLink]