Skip to content
Merged
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 roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
CLIPModel = None # type: ignore[assignment,misc]
GazeModel = None # type: ignore[assignment,misc]

__version__ = "1.4.2"
__version__ = "1.4.3"


def check_key(api_key, model, notebook, num_retries=0):
Expand Down
8 changes: 4 additions & 4 deletions roboflow/core/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def search(
limit: int = 100,
tag: Optional[str] = None,
class_name: Optional[str] = None,
in_dataset: Optional[str] = None,
in_dataset: Optional[bool] = None,
batch: bool = False,
batch_id: Optional[str] = None,
fields: Optional[List[str]] = None,
Expand All @@ -690,7 +690,7 @@ def search(
limit (int): limit of results
tag (str): tag that an image must have
class_name (str): class name that an image must have
in_dataset (str): dataset that an image must be in
in_dataset (bool): whether an image must be in this project's dataset
batch (bool): whether the image must be in a batch
batch_id (str): batch id that an image must be in
annotation_job (bool): whether the image must be in an annotation job
Expand Down Expand Up @@ -773,7 +773,7 @@ def search_all(
limit: int = 100,
tag: Optional[str] = None,
class_name: Optional[str] = None,
in_dataset: Optional[str] = None,
in_dataset: Optional[bool] = None,
batch: bool = False,
batch_id: Optional[str] = None,
fields: Optional[List[str]] = None,
Expand All @@ -791,7 +791,7 @@ def search_all(
limit (int): limit of results
tag (str): tag that an image must have
class_name (str): class name that an image must have
in_dataset (str): dataset that an image must be in
in_dataset (bool): whether an image must be in this project's dataset
batch (bool): whether the image must be in a batch
batch_id (str): batch id that an image must be in
annotation_job (bool): whether the image must be in an annotation job
Expand Down
Loading