Photograph the runs screen and a dashboard read against runs

This commit is contained in:
2026-08-25 12:13:58 +02:00
parent 77754936c6
commit 2840cc8e2b
6 changed files with 80 additions and 12 deletions
+3 -1
View File
@@ -82,6 +82,9 @@ class RunRow(BaseModel):
#: decorators. Empty for one drawn on the canvas, where `commit` is the
#: whole answer to what produced the number.
origin_commit: str = ""
#: The flow store's own commit. Short, unlike `result`, so the list
#: carries it: "what code produced this" is a question asked of a table.
commit: str = ""
seed: int | None
group_id: str | None
labels: list[str]
@@ -94,7 +97,6 @@ class RunRow(BaseModel):
class RunDetail(RunRow):
result: dict[str, Any] = Field(default_factory=dict)
commit: str = ""
flow_version: int = 1
nodes: list[RunNodeRow] = Field(default_factory=list)
artifacts: list[ArtifactRow] = Field(default_factory=list)