Skip to content

Commit 066d892

Browse files
committed
edit for pub
1 parent a639b18 commit 066d892

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

articles/applied-ai-services/form-recognizer/how-to-guides/includes/v3-0/csharp-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ms.custom: devx-track-csharp
3939

4040
:::image type="content" source="../../../media/containers/keys-and-endpoint.png" alt-text="Screenshot: keys and endpoint location in the Azure portal.":::
4141

42-
* You'll need a document file at a URL. For this project, you can use the sample forms provided in the table below for each feature:
42+
* Finally, you'll need a document file at a URL location. For this project, you can use the sample forms provided in the table below for each feature:
4343

4444
**Sample documents**
4545

articles/applied-ai-services/form-recognizer/how-to-guides/includes/v3-0/set-environment-variables.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ To set the environment variable for your Form Recognizer resource key, open a co
2525

2626
#### [Windows](#tab/windows)
2727

28-
Environment variables in Windows are ***not*** case-sensitive. They're typically named in uppercase, with words joined by an underscore. Start a CMD window and execute the commands:
28+
Environment variables in Windows are ***not*** case-sensitive. They're typically declared in uppercase, with words joined by an underscore. Open a command prompt and execute the following commands:
2929

3030
##### **Set your key variable**
3131

3232
```console
33-
setx FR_KEY {yourKey}
33+
setx FR_KEY {yourKey}
3434

3535
```
3636

@@ -49,10 +49,10 @@ setx FR_ENDPOINT {yourEndpoint}
4949

5050
| Command | Action | Example |
5151
|---------|--------|---------|
52-
| **setx** VARIABLE_NAME=value | Set or change the value of an environment variable| **setx** FR_KEY=`{yourKey}`|
53-
| **setx** VARIABLE_NAME= | Delete the environment variable by setting the value to an empty string.|**setx** FR_KEY= |
54-
| **set** VARIABLE_NAME | Display the value of a specific environment variable| **set** FR_KEY|
55-
| **set**| Display all environment variables.|**set**|
52+
| **setx** </br>VARIABLE_NAME=value | Set or change the value of an environment variable| `setx FR_KEY={yourKey}`|
53+
| **setx** </br>VARIABLE_NAME= | Delete the environment variable by setting the value to an empty string.| `setx FR_KEY=` |
54+
| **set** VARIABLE_NAME | Display the value of a specific environment variable| `set FR_KEY` |
55+
| **set**| Display all environment variables.| `set`|
5656

5757
#### [macOS](#tab/macOS)
5858

@@ -94,10 +94,10 @@ Here are a few more helpful commands to use with environment variables:
9494

9595
| Command | Action | Example |
9696
|---------|--------|---------|
97-
| **export** VARIABLE_NAME=value | Set or change the value of a temporary environment variable ().| **export** FR_KEY=`{yourKey}`|
98-
| **unset** VARIABLE_NAME | Delete an environment variable.|**unset** FR_KEY |
99-
| &bullet; **printenv** VARIABLE_NAME</br> &bullet; **echo** $VARIABLE_NAME| &bullet; Display the value of a specific environment variable (with the **echo** command, precede the variable with $).| &bullet; **printenv** FR_KEY </br>&bullet; **echo** $FR_KEY</br>|
100-
| **printenv**| Display all environment variables.|**printenv**|
97+
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable ().| `export FR_KEY={yourKey}`|
98+
| **unset** </br>VARIABLE_NAME | Delete an environment variable.| `unset FR_KEY` |
99+
| &bullet; **printenv**</br> VARIABLE_NAME</br> &bullet; **echo** </br> $VARIABLE_NAME| &bullet; Display the value of a specific environment variable (with the **echo** command, precede the variable with $).| &bullet; `printenv FR_KEY` </br>&bullet; `echo $FR_KEY`</br>|
100+
| **printenv**| Display all environment variables.| `printenv` |
101101

102102
#### [Linux](#tab/linux)
103103

@@ -139,9 +139,9 @@ Here are a few more helpful commands to use with environment variables:
139139
140140
| Command | Action | Example |
141141
|---------|--------|---------|
142-
| **export** VARIABLE_NAME=value | Set or change the value of a temporary environment variable (only lasts until you close the terminal session).| **export** FR_KEY=`{yourKey}`|
143-
| **unset** VARIABLE_NAME| Delete an environment variable.|**unset** FR_KEY= |
144-
| &bullet; **printenv** VARIABLE_NAME</br> &bullet; **echo** $VARIABLE_NAME| &bullet; Display the value of an environment variable (with the **echo** command, precede the variable with $).| &bullet; **printenv** FR_KEY </br>&bullet; **echo** $FR_KEY</br>|
145-
| **printenv**| Display all environment variables.|**printenv**|
142+
| **export** </br>VARIABLE_NAME=value | Set or change the value of a temporary environment variable (only lasts until you close the terminal session).| `export FR_KEY={yourKey}`|
143+
| **unset** </br>VARIABLE_NAME| Delete an environment variable.|`unset FR_KEY=` |
144+
| &bullet; **printenv** </br>VARIABLE_NAME</br> &bullet; **echo** </br>$VARIABLE_NAME| &bullet; Display the value of an environment variable (with the **echo** command, precede the variable with $).| &bullet; `printenv FR_KEY` </br>&bullet; `echo $FR_KEY`</br>|
145+
| **printenv**| Display all environment variables.|`printenv`|
146146
147147
---

articles/applied-ai-services/form-recognizer/how-to-guides/v3-0-sdk-rest-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ recommendations: false
1616

1717
# Use Form Recognizer SDKs or REST API | v3.0
1818

19-
In this how-to guide, you'll learn how to add Form Recognizer to your applications and workflows using a programming language SDK of your choice or the REST API. Azure Form Recognizer is a cloud-based Azure Applied AI Service that uses machine learning to extract key-value pairs, text, and tables from your documents. We recommend that you use the free service when you're learning the technology. Remember that the number of free pages is limited to 500 per month.
19+
In this guide, you'll learn how to add Form Recognizer to your applications and workflows using a programming language SDK of your choice or the REST API. Azure Form Recognizer is a cloud-based Azure Applied AI Service that uses machine learning to extract key text and structure elements from documents. We recommend that you use the free service as you're learning the technology. Remember that the number of free pages is limited to 500 per month.
2020

21-
In this project, you'll learn how-to use the following Form Recognizer models to analyze and extract data and values from forms and documents:
21+
Choose from the following Form Recognizer models to analyze and extract data and values from forms and documents:
2222

2323
> [!div class="checklist"]
2424
>
@@ -30,11 +30,11 @@ In this project, you'll learn how-to use the following Form Recognizer models to
3030
>
3131
> * The [prebuilt-tax.us.w2](../concept-w2.md) model extracts information reported on US Internal Revenue Service (IRS) tax forms.
3232
>
33-
> * The [prebuilt-invoice](../concept-invoice.md) model extracts key fields and line items from sales invoices of various formats and quality including phone-captured images, scanned documents, and digital PDFs.
33+
> * The [prebuilt-invoice](../concept-invoice.md) model extracts key fields and line items from sales invoices in various formats and quality including phone-captured images, scanned documents, and digital PDFs.
3434
>
3535
> * The [prebuilt-receipt](../concept-receipt.md) model extracts key information from printed and handwritten sales receipts.
3636
>
37-
> * The [prebuilt-idDocument](../concept-id-document.md) model extracts key information from US Drivers Licenses, international passport biographical pages, US state IDs, social security cards, and permanent resident (green) cards.
37+
> * The [prebuilt-idDocument](../concept-id-document.md) model extracts key information from US drivers licenses, international passport biographical pages, US state IDs, social security cards, and permanent resident (green) cards.
3838
>
3939
> * The [prebuilt-businessCard](../concept-business-card.md) model extracts key information from business card images.
4040

0 commit comments

Comments
 (0)