@pdfvector/instance-contract 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tsc/lib/supported-mimes.js +1 -1
- package/CHANGELOG.md +17 -0
- package/package.json +3 -3
|
@@ -65,7 +65,7 @@ export const documentParseModelDescription = "Model tier for parsing.\n\n" +
|
|
|
65
65
|
`${tierDesc("nano", documentParseCosts.nano, "credit/page", "Simple plain text documents.")}\n` +
|
|
66
66
|
`${tierDesc("mini", documentParseCosts.mini, "credits/page", "Documents with tables and structured content.")}\n` +
|
|
67
67
|
`${tierDesc("pro", documentParseCosts.pro, "credits/page", "Tables, handwritten text, figures, math, Arabic.")}\n` +
|
|
68
|
-
`${tierDesc("max", documentParseCosts.max, "credits/page", "Full Pro capabilities + enhanced multilingual.")}` +
|
|
68
|
+
`${tierDesc("max", documentParseCosts.max, "credits/page", "Full Pro capabilities + image support + enhanced multilingual.")}` +
|
|
69
69
|
formatNote;
|
|
70
70
|
/** Model tier descriptions for document extract endpoints. */
|
|
71
71
|
export const documentExtractModelDescription = "Model tier for extracting structured data.\n\n" +
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @pdfvector/instance-contract
|
|
2
2
|
|
|
3
|
+
## 0.0.36
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- [#183](https://github.com/phuctm97/pdfvector/pull/183) [`6e883ab`](https://github.com/phuctm97/pdfvector/commit/6e883ab9bf765270ccc3777c7deec5d9c07cc7a8) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Fix Sentry Bun crash and upgrade dependencies
|
|
9
|
+
|
|
10
|
+
## 0.0.35
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
- [#181](https://github.com/phuctm97/pdfvector/pull/181) [`383829a`](https://github.com/phuctm97/pdfvector/commit/383829a2d4239fd6640fbabafe725c4373a8a4aa) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Restrict image parsing to max/auto tiers with Azure DI and add text pre-check
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`383829a`](https://github.com/phuctm97/pdfvector/commit/383829a2d4239fd6640fbabafe725c4373a8a4aa)]:
|
|
18
|
+
- @pdfvector/util@0.0.18
|
|
19
|
+
|
|
3
20
|
## 0.0.34
|
|
4
21
|
### Patch Changes
|
|
5
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdfvector/instance-contract",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "API contract definitions for PDF Vector instance server",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"main": ".tsc/lib/index.js",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@orpc/contract": "^1.13.
|
|
24
|
-
"@pdfvector/util": "0.0.
|
|
23
|
+
"@orpc/contract": "^1.13.14",
|
|
24
|
+
"@pdfvector/util": "0.0.18"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"zod": "^4.3.6"
|