You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
metadata_where: Filters by the values of the metadata of the asset.
290
306
honeypot_mark_gt: Deprecated. Use `honeypot_mark_gte` instead.
291
307
honeypot_mark_lt: Deprecated. Use `honeypot_mark_lte` instead.
292
-
status_in: Returned assets should have a status that belongs to that list, if given.
293
-
Possible choices: `TODO`, `ONGOING`, `LABELED`, `TO_REVIEW` or `REVIEWED`.
294
308
label_type_in: Returned assets should have a label whose type belongs to that list, if given.
295
309
label_author_in: Returned assets should have a label whose author belongs to that list, if given. An author can be designated by the first name, the last name, or the first name + last name.
296
310
label_consensus_mark_gt: Deprecated. Use `label_consensus_mark_gte` instead.
@@ -300,7 +314,6 @@ def assets(
300
314
label_created_at_lt: Deprecated. Use `label_created_at_lte` instead.
301
315
label_honeypot_mark_gt: Deprecated. Use `label_honeypot_mark_gte` instead.
302
316
label_honeypot_mark_lt: Deprecated. Use `label_honeypot_mark_lte` instead.
303
-
skipped: Returned assets should be skipped
304
317
updated_at_gte: Returned assets should have a label whose update date is greater or equal to this date.
305
318
updated_at_lte: Returned assets should have a label whose update date is lower or equal to this date.
306
319
format: If equal to 'pandas', returns a pandas DataFrame
@@ -335,6 +348,15 @@ def assets(
335
348
external_id_in: Returned assets should have external ids that partially match the ones in the list.
336
349
For example, with `external_id_in=['abc']`, any asset with an external id containing `'abc'` will be returned.
337
350
label_output_format: If `parsed_label`, the labels in the assets will be parsed. More information on parsed labels in the [documentation](https://python-sdk-docs.kili-technology.com/latest/sdk/tutorials/label_parsing/).
351
+
skipped: Returned assets should be skipped
352
+
Only applicable if the project is in WorkflowV1 (legacy).
353
+
status_in: Returned assets should have a status that belongs to that list, if given.
354
+
Possible choices: `TODO`, `ONGOING`, `LABELED`, `TO_REVIEW` or `REVIEWED`.
355
+
Only applicable if the project is in the WorkflowV1 (legacy).
356
+
step_name_in: Returned assets are in the step whose name belong to that list, if given.
357
+
Only applicable if the project is in WorkflowV2.
358
+
step_status_in: Returned assets have the status in their step that belongs to that list, if given.
- `skipped`: only applicable if the project is in the WorkflowV1 (legacy).
1154
+
- `status_in`: only applicable if the project is in the WorkflowV1 (legacy).
1151
1155
- `label_category_search`
1152
1156
- `created_at_gte`
1153
1157
- `created_at_lte`
@@ -1156,6 +1160,8 @@ def export_labels(
1156
1160
- `inference_mark_gte`
1157
1161
- `inference_mark_lte`
1158
1162
- `metadata_where`
1163
+
- `step_name_in`: : only applicable if the project is in the WorkflowV2.
1164
+
- `step_status_in`: only applicable if the project is in the WorkflowV2.
1159
1165
1160
1166
See the documentation of [`kili.assets()`](https://python-sdk-docs.kili-technology.com/latest/sdk/asset/#kili.queries.asset.__init__.QueriesAsset.assets) for more information.
1161
1167
normalized_coordinates: This parameter is only effective on the Kili (a.k.a raw) format.
0 commit comments