File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " workflowai"
3- version = " 0.5.2 "
3+ version = " 0.5.3 "
44description = " "
55authors = [" Guillaume Aquilina <guillaume@workflowai.com>" ]
66readme = " README.md"
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ class RunRequest(BaseModel):
2020
2121 metadata : Optional [dict [str , Any ]] = None
2222
23+ labels : Optional [set [str ]] = None # deprecated, to be included in metadata
24+
2325 private_fields : Optional [set [str ]] = None
2426
2527 stream : Optional [bool ] = None
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ async def run(
9595 stream = stream ,
9696 use_cache = kwargs .get ("use_cache" ),
9797 metadata = kwargs .get ("metadata" ),
98+ labels = kwargs .get ("labels" ),
9899 )
99100
100101 route = f"/v1/_/tasks/{ task .id } /schemas/{ task .schema_id } /run"
You can’t perform that action at this time.
0 commit comments