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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ dist/
/demo

test.py
test_web.py
test_web.py

.eggs/
.conda/
2 changes: 1 addition & 1 deletion jigsawstack/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.2"
__version__ = "0.2.8"


def get_version() -> str:
Expand Down
4 changes: 2 additions & 2 deletions jigsawstack/vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def vocr(self, params: VOCRParams) -> OCRResponse:
return resp

def object_detection(self, params: ObjectDetectionParams) -> ObjectDetectionResponse:
path = "/ai/object_detection"
path = "/object_detection"
resp = Request(
config=self.config,
path=path,
Expand Down Expand Up @@ -211,7 +211,7 @@ async def vocr(self, params: VOCRParams) -> OCRResponse:
return resp

async def object_detection(self, params: ObjectDetectionParams) -> ObjectDetectionResponse:
path = "/ai/object_detection"
path = "/object_detection"
resp = await AsyncRequest(
config=self.config,
path=path,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="jigsawstack",
version="0.2.7",
version="0.2.8",
description="JigsawStack - The AI SDK for Python",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
Expand Down