diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 9a0bb9c3..857d79f6 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -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): diff --git a/roboflow/core/project.py b/roboflow/core/project.py index a5bf990f..dae10928 100644 --- a/roboflow/core/project.py +++ b/roboflow/core/project.py @@ -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, @@ -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 @@ -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, @@ -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