fix: WorkflowRunDetailApi created_at、finished_at types changed to timestamps (#16821)

This commit is contained in:
過世秋風
2025-03-27 17:23:30 +08:00
committed by GitHub
parent d65da600e5
commit 377d11d13b
4 changed files with 9 additions and 8 deletions

View File

@@ -370,8 +370,8 @@ Workflow applications offers non-session support and is ideal for translation, a
"error": null,
"total_steps": 3,
"total_tokens": 0,
"created_at": "Thu, 18 Jul 2024 03:17:40 -0000",
"finished_at": "Thu, 18 Jul 2024 03:18:10 -0000",
"created_at": 1705407629,
"finished_at": 1727807631,
"elapsed_time": 30.098514399956912
}
```

View File

@@ -373,8 +373,8 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
"error": null,
"total_steps": 3,
"total_tokens": 0,
"created_at": "Thu, 18 Jul 2024 03:17:40 -0000",
"finished_at": "Thu, 18 Jul 2024 03:18:10 -0000",
"created_at": 1705407629,
"finished_at": 1727807631,
"elapsed_time": 30.098514399956912
}
```

View File

@@ -363,8 +363,8 @@ Workflow 应用无会话支持,适合用于翻译/文章写作/总结 AI 等
"error": null,
"total_steps": 3,
"total_tokens": 0,
"created_at": "Thu, 18 Jul 2024 03:17:40 -0000",
"finished_at": "Thu, 18 Jul 2024 03:18:10 -0000",
"created_at": 1705407629,
"finished_at": 1727807631,
"elapsed_time": 30.098514399956912
}
```