Photograph the runs screen and a dashboard read against runs
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user