Skip to content

Commit 2f34814

Browse files
Merge origin/main into feat/smart-save-to
Resolves conflict in src/landingai_ade/_client.py: keep branch's original_markdown/url capture for filename derivation; use main's renamed deepcopy_with_paths.
2 parents bf91332 + 2f49d2a commit 2f34814

28 files changed

Lines changed: 1440 additions & 111 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.10.0"
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: 6
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/landingai%2Fade-22973c858422fbae26fb3ada2006695fb8f5d5daaf6862e6edb7ed5b8af436b0.yml
3-
openapi_spec_hash: 5511c4c03ee213ceaf68c9f9d889f861
4-
config_hash: 0d45e63699ddebca7fd366c1ca124e51
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: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
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+
18+
## 1.11.1 (2026-04-22)
19+
20+
Full Changelog: [v1.11.0...v1.11.1](https://github.com/landing-ai/ade-python/compare/v1.11.0...v1.11.1)
21+
22+
### Performance Improvements
23+
24+
* **client:** optimize file structure copying in multipart requests ([e78f8c0](https://github.com/landing-ai/ade-python/commit/e78f8c0604a7d59671998f02b7bb1832d8c09aa3))
25+
26+
## 1.11.0 (2026-04-13)
27+
28+
Full Changelog: [v1.10.0...v1.11.0](https://github.com/landing-ai/ade-python/compare/v1.10.0...v1.11.0)
29+
30+
### Features
31+
32+
* **api:** extract build ([8eae5bb](https://github.com/landing-ai/ade-python/commit/8eae5bb1e4683d4c2899cfc611cca008df932f58))
33+
* **api:** extract-build-schema ([b837252](https://github.com/landing-ai/ade-python/commit/b83725290313a519b28802e4c898673199c1e67d))
34+
35+
36+
### Bug Fixes
37+
38+
* **client:** preserve hardcoded query params when merging with user params ([ce8fbb0](https://github.com/landing-ai/ade-python/commit/ce8fbb05283ef06ed237dc0df00d4db74436b80a))
39+
* ensure file data are only sent as 1 parameter ([5917bd2](https://github.com/landing-ai/ade-python/commit/5917bd22142ee3749fe919004b758d44d4e68028))
40+
341
## 1.10.0 (2026-04-06)
442

543
Full Changelog: [v1.9.0...v1.10.0](https://github.com/landing-ai/ade-python/compare/v1.9.0...v1.10.0)

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!-- @format -->
22

3-
<!-- @format -->
4-
53
<div align="center">
64

7-
<img src="logo.png" alt="LandingAI" width="420" />
5+
<picture>
6+
<source media="(prefers-color-scheme: dark)" srcset="logo-white.svg">
7+
<source media="(prefers-color-scheme: light)" srcset="logo-black.svg">
8+
<img src="logo-black.svg" alt="LandingAI" width="420" />
9+
</picture>
810

911
# Agentic Document Extraction Python Library
1012

api.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,23 @@ from landingai_ade.types import ParseGroundingBox, ParseMetadata
99
Types:
1010

1111
```python
12-
from landingai_ade.types import ExtractResponse, ParseResponse, SplitResponse
12+
from landingai_ade.types import (
13+
ClassifyResponse,
14+
ExtractResponse,
15+
ExtractBuildSchemaResponse,
16+
ParseResponse,
17+
SectionResponse,
18+
SplitResponse,
19+
)
1320
```
1421

1522
Methods:
1623

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>
1725
- <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>
26+
- <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>
1827
- <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>
1929
- <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>
2030

2131
# ParseJobs

0 commit comments

Comments
 (0)