Skip to content

Commit 6479e2b

Browse files
author
RoseHJM
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into ade-arm-terraform-runner
2 parents df7aadb + 417915c commit 6479e2b

File tree

559 files changed

+7559
-8889
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

559 files changed

+7559
-8889
lines changed

.openpublishing.publish.config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,6 +1189,12 @@
11891189
"url": "https://github.com/Azure-Samples/explore-iot-operations",
11901190
"branch": "main",
11911191
"branch_mapping": {}
1192+
},
1193+
{
1194+
"path_to_root": "SupportArticles-docs",
1195+
"url": "https://github.com/MicrosoftDocs/SupportArticles-docs",
1196+
"branch": "main",
1197+
"branch_mapping": {}
11921198
}
11931199
],
11941200
"branch_target_mapping": {

.openpublishing.redirection.iot-develop.json

Lines changed: 182 additions & 97 deletions
Large diffs are not rendered by default.

articles/ai-services/Anomaly-Detector/faq.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ metadata:
88
ms.date: 01/18/2024
99
ms.author: jingruhan
1010
author: jr-MS
11-
ms.manager: nitinme
11+
manager: nitinme
1212
title: Anomaly Detector frequently asked questions
1313
summary: This article contains answers to frequently asked troubleshooting questions about the Anomaly Detector service.
1414

1515
sections:
1616

1717
- name: Anomaly Detector frequently asked questions
18-
questions:
18+
questions:
1919
- question: |
2020
When will Anomaly Detector be deprecated?
2121
answer: |

articles/ai-services/LUIS/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ metadata:
77
ms.topic: landing-page
88
ms.date: 01/19/2024
99
ms.author: aahi
10-
ms.manager: nitinme
1110
author: aahill
11+
manager: nitinme
1212
ms.service: azure-ai-language
1313
ms.subservice: azure-ai-luis
1414
#services: cognitive-services

articles/ai-services/LUIS/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ items:
9292
href: luis-how-to-collaborate.md
9393
- name: With versions
9494
href: luis-how-to-manage-versions.md
95-
diplayName: import, export, container
95+
displayName: import, export, container
9696
- name: With Traffic Manager
9797
href: luis-traffic-manager.md
9898
- name: Use containers

articles/ai-services/document-intelligence/concept-invoice.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ Following are the line items extracted from an invoice in the JSON output respon
234234
| Amount | Number | The amount of the line item | $60.00 | 100 |
235235
| Description | String | The text description for the invoice line item | Consulting service | Consulting service |
236236
| Quantity | Number | The quantity for this invoice line item | 2 | 2 |
237+
| OrderQuantity | Number | The ordered quantity for this line item. May differ from the quantity shipped and invoiced | 3 | 3 |
237238
| UnitPrice | Number | The net or gross price (depending on the gross invoice setting of the invoice) of one unit of this item | $30.00 | 30 |
238239
| ProductCode | String| Product code, product number, or SKU associated with the specific line item | A123 | |
239240
| Unit | String| The unit of the line item, e.g, kg, lb etc. | Hours | |
@@ -301,6 +302,28 @@ The following are the line items extracted from an invoice in the JSON output re
301302
| Date | date| Date corresponding to each line item. Often it's a date the line item was shipped | 3/4/2021| 2021-03-04 |
302303
| Tax | number | Tax associated with each line item. Possible values include tax amount, tax %, and tax Y/N | 10% | |
303304

305+
The following are complex fields extracted from an invoice in the JSON output response:
306+
307+
### TaxDetails
308+
Tax details aims at breaking down the different taxes applied to the invoice total.
309+
310+
|Name| Type | Description | Text (line item #1) | Value (standardized output) |
311+
|:-----|:----|:----|:----| :----|
312+
| Items | string | Full string text line of the tax item | V.A.T. 15% $60.00 | |
313+
| Amount | number | The tax amount of the tax item | 60.00 | 60 |
314+
| Rate | string | The tax rate of the tax item | 15% | |
315+
316+
### PaymentDetails
317+
List all the detected payment options detected on the field.
318+
319+
|Name| Type | Description | Text (line item #1) | Value (standardized output) |
320+
|:-----|:----|:----|:----| :----|
321+
| IBAN | string | Internal Bank Account Number | GB33BUKB20201555555555 | |
322+
| SWIFT | string | SWIFT code | BUKBGB22 | |
323+
| BPayBillerCode | string | Australian B-Pay Biller Code | 12345 | |
324+
| BPayReference | string | Australian B-Pay Reference Code | 98765432100 | |
325+
326+
304327
### JSON output
305328

306329
The JSON output has three parts:

articles/ai-services/document-intelligence/how-to-guides/includes/v4-0/javascript-sdk.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Create a Node.js Express application.
7979
1. Install the `ai-document-intelligence` client library and `azure/identity` npm packages:
8080

8181
```console
82-
npm i @azure/[email protected] @azure/identity
82+
npm i @azure-rest/[email protected] @azure/identity
8383
```
8484

8585
Your app's *package.json* file is updated with the dependencies.
@@ -106,7 +106,7 @@ Open the `index.js` file in Visual Studio Code or your favorite IDE and select o
106106
## Use the Read model
107107

108108
```javascript
109-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
109+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
110110

111111
//use your `key` and `endpoint` environment variables
112112
const key = process.env['DI_KEY'];
@@ -202,7 +202,7 @@ Visit the Azure samples repository on GitHub and view the [`read` model output](
202202
## Use the Layout model
203203

204204
```javascript
205-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
205+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
206206

207207
//use your `key` and `endpoint` environment variables
208208
const key = process.env['DI_KEY'];
@@ -272,7 +272,7 @@ Visit the Azure samples repository on GitHub and view the [layout model output](
272272
## Use the General document model
273273

274274
```javascript
275-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
275+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
276276

277277
//use your `key` and `endpoint` environment variables
278278
const key = process.env['DI_KEY'];
@@ -318,7 +318,7 @@ Visit the Azure samples repository on GitHub and view the [general document mode
318318
## Use the W-2 tax model
319319

320320
```javascript
321-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
321+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
322322

323323
//use your `key` and `endpoint` environment variables
324324
const key = process.env['DI_KEY'];
@@ -397,7 +397,7 @@ Visit the Azure samples repository on GitHub and view the [W-2 tax model output]
397397
## Use the Invoice model
398398

399399
```javascript
400-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
400+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
401401

402402
//use your `key` and `endpoint` environment variables
403403
const key = process.env['DI_KEY'];
@@ -459,7 +459,7 @@ Visit the Azure samples repository on GitHub and view the [invoice model output]
459459
## Use the Receipt model
460460
461461
```javascript
462-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
462+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
463463

464464
//use your `key` and `endpoint` environment variables
465465
const key = process.env['DI_KEY'];
@@ -518,7 +518,7 @@ Visit the Azure samples repository on GitHub and view the [receipt model output]
518518
## Use the ID document model
519519
520520
```javascript
521-
const { AzureKeyCredential, DocumentIntelligence } = require("@azure/ai-document-intelligence");
521+
const { AzureKeyCredential, DocumentIntelligence } = require("@azure-rest/ai-document-intelligence");
522522

523523
//use your `key` and `endpoint` environment variables
524524
const key = process.env['DI_KEY'];

articles/ai-services/document-intelligence/quickstarts/includes/python-sdk.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,10 @@ def analyze_layout():
171171
"prebuilt-layout", formUrl
172172
)
173173

174+
analyze_request = AnalyzeDocumentRequest(
175+
url_source=formUrl
176+
)
177+
174178
result: AnalyzeResult = poller.result()
175179

176180
if result.styles and any([style.is_handwritten for style in result.styles]):

articles/ai-services/metrics-advisor/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
href: glossary.md
5050
- name: Cost management
5151
href: cost-management.md
52-
displayname: cost, pricing, price, billing, bill
52+
displayName: cost, pricing, price, billing, bill
5353
- name: Responsible use of AI
5454
items:
5555
- name: Transparency notes

articles/ai-services/openai/concepts/models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure OpenAI
44
description: Learn about the different model capabilities that are available with Azure OpenAI.
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 04/04/2024
7+
ms.date: 04/15/2024
88
ms.custom: references_regions, build-2023, build-2023-dataai, refefences_regions
99
manager: nitinme
1010
author: mrbullwinkle #ChrisHMSFT

0 commit comments

Comments
 (0)