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
4 changes: 2 additions & 2 deletions jsr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@jigsawstack/jigsawstack",
"version": "0.4.5",
"version": "0.4.6",
"exports": "./index.ts"
}
}
15 changes: 4 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
{
"name": "jigsawstack",
"description": "JigsawStack - The AI SDK for Typescript and Javascript",
"keywords": [
"framework",
"ai",
"nextjs",
"react"
],
"keywords": ["framework", "ai", "nextjs", "react"],
"type": "module",
"license": "MIT",
"version": "0.4.5",
"version": "0.4.6",
"homepage": "https://jigsawstack.com",
"repository": {
"type": "git",
Expand All @@ -25,9 +20,7 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist/**"
],
"files": ["dist/**"],
"exports": {
"require": {
"types": "./dist/index.d.cts",
Expand Down Expand Up @@ -62,4 +55,4 @@
"tsx": "^4.16.4",
"typescript": "^5.5.4"
}
}
}
2 changes: 2 additions & 0 deletions src/vision/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ export type ObjectDetectionParams = {
url?: string;
file_store_key?: string;
prompts?: string[];
enhance_prompts?: boolean;
features?: ("object" | "gui")[];
annotated_image?: boolean;
return_type?: "url" | "base64";
return_masks?: boolean;
return_tags?: boolean;
};

export interface ObjectDetectionResponse extends BaseResponse {
Expand Down
Loading