You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/documentintelligence/azure-ai-documentintelligence/CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Release History
2
2
3
-
## 1.0.0b4 (Unreleased)
3
+
## 1.0.0b4 (2024-09-05)
4
4
5
5
### Features Added
6
6
- Added support for the Analyze Batch Documents API:
@@ -22,6 +22,7 @@
22
22
- Added property `allow_overwrite` to model `BuildDocumentClassifierRequest`.
23
23
- Added properties `allow_overwrite` and `max_training_hours` to model `BuildDocumentModelRequest`.
24
24
- Added properties `classifier_id`, `split` and `doc_types` to model `ComposeDocumentModelRequest`.
25
+
- Added support for getting `operation_id` via `details` property in the new return types `AnalyzeDocumentLROPoller` and `AsyncAnalyzeDocumentLROPoller` in operation `begin_analyze_document()`.
25
26
26
27
### Breaking Changes
27
28
- Removed support for extracting lists from analyzed documents:
Copy file name to clipboardExpand all lines: sdk/documentintelligence/azure-ai-documentintelligence/README.md
+78-1Lines changed: 78 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Azure AI Document Intelligence ([previously known as Form Recognizer][service-re
18
18
19
19
## _Disclaimer_
20
20
21
-
_The API version 2024-02-29-preview is currently only available in some Azure regions, the available regions can be found from [here][python-di-available-regions]._
21
+
_The latest service API is currently only available in some Azure regions, the available regions can be found from [here][python-di-available-regions]._
22
22
23
23
## Getting started
24
24
@@ -195,6 +195,8 @@ Sample code snippets are provided to illustrate using long-running operations [b
195
195
The following section provides several code snippets covering some of the most common Document Intelligence tasks, including:
Convert an analog PDF into a PDF with embedded text. Such text can enable text search within the PDF or allow the PDF to be used in LLM chat scenarios.
351
+
352
+
_Note: For now, this feature is only supported by `prebuilt-read`. All other models will return error._
Analyze key-value pairs, tables, styles, and selection marks from documents using the general document model provided by the Document Intelligence service.
Copy file name to clipboardExpand all lines: sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/_operations/__init__.py
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,15 @@
6
6
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
0 commit comments