Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be316e4

Browse files
authored
Merge pull request #87 from JigsawStack/update/changelog-sep
2 parents 839187d + 2925558 commit be316e4

File tree

3 files changed

+64
-26
lines changed

3 files changed

+64
-26
lines changed

docs.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
"groups": [
156156
{
157157
"group": "Core AI",
158-
"pages": ["/docs/api-reference/ai/sentiment", "/docs/api-reference/ai/summary", "/docs/api-reference/ai/image-generation"]
158+
"pages": ["/docs/api-reference/ai/sentiment", "/docs/api-reference/ai/summary"]
159159
},
160160
{
161161
"group": "Web Scrape",
@@ -208,6 +208,10 @@
208208
"/docs/api-reference/prompt-engine/delete",
209209
"/docs/api-reference/prompt-engine/run-direct"
210210
]
211+
},
212+
{
213+
"group": "Image Generation",
214+
"pages": ["/docs/api-reference/ai/image-generation"]
211215
}
212216
]
213217
},

docs/api-reference/ai/image-generation.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ description: "Generate an image based on the given text by employing AI models l
66

77
import ImageGenerationSnippet from "/snippets/code-req-examples/image-generation.mdx";
88

9+
<Warning>
10+
<p>
11+
The image generation API is depracated and no longer being maintained.
12+
</p>
13+
</Warning>
14+
915
## Request Parameters
1016

1117
### Body

docs/changelog.mdx

Lines changed: 53 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,45 @@
22
title: "Product Updates"
33
description: "JigsawStack updates and announcements"
44
---
5-
<Update label="September 19, 2025" description="Python v0.3.7, JavaScript v0.3.6" tags={["DOCS", "Fixes", "APIs"]}>
5+
<Update label="September 29, 2025" description="API Fixes and Updates" tags={["DOCS", "Fixes", "APIs"]}>
66

77
### Fixes
8-
- Updated Object Detection API to accept "object" parameter as an alternative to "object_detection"
9-
- Fixed Object Detection API for pure GUI images
10-
- Improved Speech to Text (STT) webhook error handling with 400 status code for empty files
11-
- Enhanced Object Detection tag generation for more accurate and relevant results
8+
- Fixed **Embedding v1** API where sometimes the model would fail inconsistently
9+
- Fixed **Classification** API where the model would fail inconsistently for certain images
10+
- Fixed **AI Scraper** where the model would fail for pdf with large amount of pages
11+
12+
### APIs
13+
- **Speech to Text (STT):** Added confidnece score for the language detected. Available if language parameter is not provided or set to “auto”.
14+
- **Object to Detection:**: Improved the speed of the object detection model
15+
- Improved the speed of APIs that involves processing binary data. This includes:
16+
- Object Detection
17+
- Speech to Text (STT)
18+
- Embedding v1
19+
- Embedding v2
20+
- Image Translation
21+
- vOCR
22+
- NSFW
23+
- File Upload
24+
25+
### DOCS
26+
- Introduced JigsawStack Google Sheets integration
27+
- Added confidence score for the language detected in the STT API
28+
- Added warning for the deprecated Image Generation API
29+
30+
31+
</Update>
32+
33+
<Update label="September 19, 2025" description="Python v0.3.7, JavaScript v0.3.6" tags={["DOCS", "Fixes", "SDKs"]}>
34+
35+
### Fixes
36+
- Updated **Object Detection** API to accept "object" parameter as an alternative to "object_detection"
37+
- Fixed **Object Detection** API for pure GUI images
38+
- Improved **Speech to Text (STT)** webhook error handling with 400 status code for empty files
39+
- Enhanced **Object Detection** tag generation for more accurate and relevant results
1240

1341
### SDKs
14-
- Updated Object Detection now supports "object" parameter as an alternative to "object_detection"
15-
- Updated Speech to Text (STT) to return `language_detected` and `confidence` in the response
42+
- Updated **Object Detection** now supports "object" parameter as an alternative to "object_detection"
43+
- Updated **Speech to Text (STT)** to return `language_detected` and `confidence` in the response
1644

1745
### DOCS
1846
- Added documentation for [Embedding v2](/docs/embedding-v2) parameters: `instructions` and `query`
@@ -27,12 +55,12 @@ description: "JigsawStack updates and announcements"
2755

2856
<Update label="September 15, 2025" description="v0.3.4 - v0.3.5" tags={["SDKs", "Fixes", "DOCS"]}>
2957
### Fixes
30-
- Added support for NSFW API when images are not available
31-
- Added support for HTML to Any now works with all HTML tags as input
32-
- Fixed File Upload now works with Embedding v2
33-
- Fixed VOCR for PDF in certain edge cases
34-
- Fixed AI Scraper returning invalid JSON for empty element_prompts
35-
- Decrease latency for AI Scraper
58+
- Added support for **NSFW** API when images are not available
59+
- Added support for **HTML to Any** now works with all HTML tags as input
60+
- Fixed **File Upload** now works with Embedding v2
61+
- Fixed **VOCR** for PDF in certain edge cases
62+
- Fixed **AI Scraper** returning invalid JSON for empty element_prompts
63+
- Decrease latency for **AI Scraper**
3664

3765
### DOCS
3866
- Updated File Uploads documentation (Handling Files)[/docs/handling-files]
@@ -43,14 +71,14 @@ description: "JigsawStack updates and announcements"
4371
- Renamed embeddingV2 method to embedding_v2 for consistency
4472

4573
#### Python
46-
- Fixed blob inputs for Object Detection where previously features params was not respected
47-
- Fixed blob inputs for VOCR where page range was not respected
74+
- Fixed blob inputs for **Object Detection** where previously features params was not respected
75+
- Fixed blob inputs for **VOCR** where page range was not respected
4876
- Established CI/CD pipeline for Python SDK
49-
- Updated to pass x-jigsaw-no-request-log through headers. (Security)[/docs/security]
77+
- Updated to pass **x-jigsaw-no-request-log** through headers. (Security)[/docs/security]
5078

5179
#### JavaScript
52-
- Fixed blob inputs for Object Detection where previously features params was not respected
53-
- Fixed blob inputs for VOCR where page range was not respected
80+
- Fixed blob inputs for **Object Detection** where previously features params was not respected
81+
- Fixed blob inputs for **VOCR** where page range was not respected
5482
</Update>
5583

5684
<Update label="September 8, 2025" description="Python v0.3.3, JavaScript v0.3.3" tags={["SDKs", "Features", "API", "Fixes", "DOCS"]}>
@@ -61,18 +89,18 @@ description: "JigsawStack updates and announcements"
6189
- response: `speaker_embeddings` a list of embeddings for the speaker.
6290

6391
### Fixes
64-
- fixed Speech to Text (STT) webhook
65-
- fixed file upload overwrites error
92+
- fixed **Speech to Text (STT)** webhook
93+
- fixed **file upload** overwrites error
6694

6795
### API
68-
- added embedding v2 API
96+
- added **embedding v2** API
6997

7098
### SDKs
7199
- additional type safety for all APIs
72-
- added embedding v2
73-
- added deep research
74-
- removed Text to Speech (TTS) from SDKs
75-
- brought back prompt engine
100+
- added **embedding v2**
101+
- added **deep research**
102+
- removed **Text to Speech (TTS)** from SDKs
103+
- brought back **prompt engine**
76104

77105

78106
### DOCS

0 commit comments

Comments
 (0)