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 1
1
[tool .poetry ]
2
2
name = " workflowai"
3
- version = " 0.5.2 "
3
+ version = " 0.5.3 "
4
4
description = " "
5
5
authors = [" Guillaume Aquilina <guillaume@workflowai.com>" ]
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ class RunRequest(BaseModel):
20
20
21
21
metadata : Optional [dict [str , Any ]] = None
22
22
23
+ labels : Optional [set [str ]] = None # deprecated, to be included in metadata
24
+
23
25
private_fields : Optional [set [str ]] = None
24
26
25
27
stream : Optional [bool ] = None
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ async def run(
95
95
stream = stream ,
96
96
use_cache = kwargs .get ("use_cache" ),
97
97
metadata = kwargs .get ("metadata" ),
98
+ labels = kwargs .get ("labels" ),
98
99
)
99
100
100
101
route = f"/v1/_/tasks/{ task .id } /schemas/{ task .schema_id } /run"
You can’t perform that action at this time.
0 commit comments