add cost info to the workflow run repsonse (#1456)

This commit is contained in:
Shuchang Zheng 2024-12-31 11:24:09 -08:00 committed by GitHub
parent 175ce55f06
commit 171aef6bf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 35 additions and 1 deletions

View file

@ -134,3 +134,5 @@ class WorkflowRunStatusResponse(BaseModel):
recording_url: str | None = None
downloaded_file_urls: list[str] | None = None
outputs: dict[str, Any] | None = None
total_steps: int | None = None
total_cost: float | None = None