diff --git a/README.md b/README.md index f534e67..70daeff 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ task_id = client.create_task( name="sample.jpg", file_path="./sample.jpg", annotations=[{ + "type": "bbox", "value": "annotation-value", "attributes": [ { @@ -202,6 +203,7 @@ task = client.create_multi_image_task( name="sample", folder_path="./sample", annotations=[{ + "type": "segmentation", "value": "annotation-value", "attributes": [ { diff --git a/setup.py b/setup.py index 9b477ad..12389b0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="fastlabel", - version="0.4.2", + version="0.5.0", author="eisuke-ueta", author_email="eisuke.ueta@fastlabel.ai", description="The official Python SDK for FastLabel API, the Data Platform for AI",