feat: clarify workflow run history

This commit is contained in:
2026-06-13 13:28:40 +08:00
parent 70e3b1859a
commit d3837fc975
5 changed files with 100 additions and 0 deletions
@@ -124,6 +124,12 @@ class WorkflowRunListResponse(BaseModel):
workflow_name: str = ""
status: str = "pending"
trigger_type: str = "api"
inputs: dict = Field(default_factory=dict)
outputs: dict = Field(default_factory=dict)
current_node_id: str = ""
last_node_id: str = ""
last_node_label: str = ""
last_node_type: str = ""
total_steps: int = 0
total_tokens: int = 0
elapsed_time: int = 0