Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/kili/domain/asset/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

AssetStatus = Literal["TODO", "ONGOING", "LABELED", "REVIEWED", "TO_REVIEW"]

StatusInStep = Literal["TO_DO", "DOING", "PARTIALLY_DONE", "REDO", "DONE", "SKIPPED"]
StatusInStep = Literal["TO_DO", "IN_PROGRESS", "PARTIALLY_DONE", "REWORK", "DONE", "SKIPPED"]


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/kili/llm/presentation/client/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def export(
step_name_in: Returned assets are in a step whose name belong to that list, if given.
Only applicable if the project is in WorkflowV2.
step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
!!! Example
```python
Expand Down
6 changes: 3 additions & 3 deletions src/kili/presentation/client/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def assets(
step_status_in: Returned assets have the status in their step that belongs to that list, if given.
Only applicable if the project is in WorkflowV2.
step_status_not_in: Returned assets have the status in their step that does not belong to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.

!!! info "Dates format"
Expand Down Expand Up @@ -719,10 +719,10 @@ def count_assets(
step_name_not_in: Returned assets are in a step whose name does not belong to that list, if given.
Only applicable if the project is in WorkflowV2.
step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
step_status_not_in: Returned assets have the status of their step that does not belong to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
step_name_and_status_in: Returned assets match at least one of the given (step_name, step_status) pairs.
Only applicable if the project is in WorkflowV2.
Expand Down
8 changes: 4 additions & 4 deletions src/kili/presentation/client/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def count_labels(
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
Only applicable if the project is in WorkflowV2.
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
author_in: Returned labels should have been made by authors in that list, if given.
An author can be designated by the first name, the last name, or the first name + last name.
Expand Down Expand Up @@ -401,7 +401,7 @@ def labels(
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
Only applicable if the project is in WorkflowV2.
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
author_in: Returned labels should have been made by authors in that list, if given.
An author can be designated by the first name, the last name, or the first name + last name.
Expand Down Expand Up @@ -650,7 +650,7 @@ def predictions(
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
Only applicable if the project is in WorkflowV2.
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
author_in: Returned labels should have been made by authors in that list, if given.
An author can be designated by the first name, the last name, or the first name + last name.
Expand Down Expand Up @@ -843,7 +843,7 @@ def inferences(
asset_step_name_in: Returned assets are in a step whose name belong to that list, if given.
Only applicable if the project is in WorkflowV2.
asset_step_status_in: Returned assets have the status of their step that belongs to that list, if given.
Possible choices: `TO_DO`, `DOING`, `PARTIALLY_DONE`, `REDO`, `DONE`, `SKIPPED`.
Possible choices: `TO_DO`, `IN_PROGRESS`, `PARTIALLY_DONE`, `REWORK`, `DONE`, `SKIPPED`.
Only applicable if the project is in WorkflowV2.
author_in: Returned labels should have been made by authors in that list, if given.
An author can be designated by the first name, the last name, or the first name + last name.
Expand Down
Loading