File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- __version__ = "0.4.5 "
1+ __version__ = "0.4.6 "
22
33
44def get_version () -> str :
Original file line number Diff line number Diff line change @@ -102,6 +102,11 @@ class ObjectDetectionParams(TypedDict):
102102 List of prompts for object detection
103103 """
104104
105+ enhance_prompts : NotRequired [bool ]
106+ """
107+ Whether to use enhanced prompts for better detection results
108+ """
109+
105110 features : NotRequired [List [Literal ["object" , "gui" ]]]
106111 """
107112 List of features to enable: object, gui
@@ -122,6 +127,11 @@ class ObjectDetectionParams(TypedDict):
122127 Whether to return masks for the detected objects
123128 """
124129
130+ return_tags : NotRequired [bool ]
131+ """
132+ Whether to return tags detected in the image
133+ """
134+
125135
126136class ObjectDetectionResponse (BaseResponse ):
127137 annotated_image : NotRequired [str ]
Original file line number Diff line number Diff line change 66
77setup (
88 name = "jigsawstack" ,
9- version = "0.4.5 " ,
9+ version = "0.4.6 " ,
1010 description = "JigsawStack - The AI SDK for Python" ,
1111 long_description = open ("README.md" , encoding = "utf8" ).read (),
1212 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments