Skip to content

Commit 4b32bbf

Browse files
release: 1.12.0 (#88)
* feat(api): classify api * feat(api): section api * feat(api): api update * chore(internal): more robust bootstrap script * release: 1.12.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent b13032b commit 4b32bbf

14 files changed

Lines changed: 702 additions & 9 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.11.1"
2+
".": "1.12.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 7
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/landingai%2Fade-3052ba97a9203f16ff5e3f37520554ebdb5b05fd30a472c95869ed679ed30d1b.yml
3-
openapi_spec_hash: 3a45b51e72f53055cc87a88d1f9ad05e
4-
config_hash: 56c9f6570b7996559a642d8de67b400f
1+
configured_endpoints: 9
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/landingai%2Fade-027fb87ba705ac701f9632cddf16c55874cc5fa02d6cc0759a6a8f39583ff1b7.yml
3+
openapi_spec_hash: 1b0a0f468129939b1f96fa130c1c60e2
4+
config_hash: d3c62c183c1d0f73f5d04504a415859b

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 1.12.0 (2026-04-23)
4+
5+
Full Changelog: [v1.11.1...v1.12.0](https://github.com/landing-ai/ade-python/compare/v1.11.1...v1.12.0)
6+
7+
### Features
8+
9+
* **api:** api update ([60b523d](https://github.com/landing-ai/ade-python/commit/60b523dc0ea0bd8d4ad05966e056a8af4257bf67))
10+
* **api:** classify api ([560a18a](https://github.com/landing-ai/ade-python/commit/560a18a8373aa15bd465b123513227dbfe695e78))
11+
* **api:** section api ([d7216ef](https://github.com/landing-ai/ade-python/commit/d7216ef4b4a69674c2acd4b14642810ee50e430c))
12+
13+
14+
### Chores
15+
16+
* **internal:** more robust bootstrap script ([65dba33](https://github.com/landing-ai/ade-python/commit/65dba33561c5504bdc987eaeaae98d2818596b6d))
17+
318
## 1.11.1 (2026-04-22)
419

520
Full Changelog: [v1.11.0...v1.11.1](https://github.com/landing-ai/ade-python/compare/v1.11.0...v1.11.1)

api.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,22 @@ Types:
1010

1111
```python
1212
from landingai_ade.types import (
13+
ClassifyResponse,
1314
ExtractResponse,
1415
ExtractBuildSchemaResponse,
1516
ParseResponse,
17+
SectionResponse,
1618
SplitResponse,
1719
)
1820
```
1921

2022
Methods:
2123

24+
- <code title="post /v1/ade/classify">client.<a href="./src/landingai_ade/_client.py">classify</a>(\*\*<a href="src/landingai_ade/types/client_classify_params.py">params</a>) -> <a href="./src/landingai_ade/types/classify_response.py">ClassifyResponse</a></code>
2225
- <code title="post /v1/ade/extract">client.<a href="./src/landingai_ade/_client.py">extract</a>(\*\*<a href="src/landingai_ade/types/client_extract_params.py">params</a>) -> <a href="./src/landingai_ade/types/extract_response.py">ExtractResponse</a></code>
2326
- <code title="post /v1/ade/extract/build-schema">client.<a href="./src/landingai_ade/_client.py">extract_build_schema</a>(\*\*<a href="src/landingai_ade/types/client_extract_build_schema_params.py">params</a>) -> <a href="./src/landingai_ade/types/extract_build_schema_response.py">ExtractBuildSchemaResponse</a></code>
2427
- <code title="post /v1/ade/parse">client.<a href="./src/landingai_ade/_client.py">parse</a>(\*\*<a href="src/landingai_ade/types/client_parse_params.py">params</a>) -> <a href="./src/landingai_ade/types/parse_response.py">ParseResponse</a></code>
28+
- <code title="post /v1/ade/section">client.<a href="./src/landingai_ade/_client.py">section</a>(\*\*<a href="src/landingai_ade/types/client_section_params.py">params</a>) -> <a href="./src/landingai_ade/types/section_response.py">SectionResponse</a></code>
2529
- <code title="post /v1/ade/split">client.<a href="./src/landingai_ade/_client.py">split</a>(\*\*<a href="src/landingai_ade/types/client_split_params.py">params</a>) -> <a href="./src/landingai_ade/types/split_response.py">SplitResponse</a></code>
2630

2731
# ParseJobs

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "landingai-ade"
3-
version = "1.11.1"
3+
version = "1.12.0"
44
description = "The official Python library for the landingai-ade API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
7+
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "${SKIP_BREW:-}" != "1" ] && [ -t 0 ]; then
88
brew bundle check >/dev/null 2>&1 || {
99
echo -n "==> Install Homebrew dependencies? (y/N): "
1010
read -r response

0 commit comments

Comments
 (0)