Skip to content

Commit e63fee5

Browse files
committed
Update references to Azure Form Recognizer to Azure AI Document Intelligence
1 parent bf6de87 commit e63fee5

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ In order to deploy and run this example, you'll need
9797
- **Azure account permissions** - Your Azure Account must have `Microsoft.Authorization/roleAssignments/write` permissions, such as [User Access Administrator](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#user-access-administrator) or [Owner](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#owner).
9898

9999
> [!WARNING]<br>
100-
> By default this sample will create an Azure Container App, and Azure AI Search resource that have a monthly cost, as well as Form Recognizer resource that has cost per document page. You can switch them to free versions of each of them if you want to avoid this cost by changing the parameters file under the infra folder (though there are some limits to consider; for example, you can have up to 1 free Azure AI Search resource per subscription, and the free Form Recognizer resource only analyzes the first 2 pages of each document.)
100+
> By default this sample will create an Azure Container App, and Azure AI Search resource that have a monthly cost, as well as Azure AI Document Intelligence resource that has cost per document page. You can switch them to free versions of each of them if you want to avoid this cost by changing the parameters file under the infra folder (though there are some limits to consider; for example, you can have up to 1 free Azure AI Search resource per subscription, and the free Azure AI Document Intelligence resource only analyzes the first 2 pages of each document.)
101101
102102
### Project setup
103103

app/prepdocs/PrepareDocs/Program.Options.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ internal static partial class Program
3939
new(name: "--removeall", description: "Remove all blobs from blob storage and documents from the search index");
4040

4141
private static readonly Option<string> s_formRecognizerServiceEndpoint =
42-
new(name: "--formrecognizerendpoint", description: "Optional. The Azure Form Recognizer service endpoint which will be used to extract text, tables and layout from the documents (must exist already)");
42+
new(name: "--formrecognizerendpoint", description: "Optional. The Azure AI Document Intelligence service endpoint which will be used to extract text, tables and layout from the documents (must exist already)");
4343

4444
private static readonly Option<string> s_computerVisionServiceEndpoint =
4545
new(name: "--computervisionendpoint", description: "Optional. The Azure Computer Vision service endpoint which will be used to vectorize image and query");

app/shared/Shared/Services/AzureSearchEmbedService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public async Task EnsureSearchIndexAsync(string searchIndexName, CancellationTok
194194
public async Task<IReadOnlyList<PageDetail>> GetDocumentTextAsync(Stream blobStream, string blobName)
195195
{
196196
logger?.LogInformation(
197-
"Extracting text from '{Blob}' using Azure Form Recognizer", blobName);
197+
"Extracting text from '{Blob}' using Azure AI Document Intelligence", blobName);
198198

199199
using var ms = new MemoryStream();
200200
blobStream.CopyTo(ms);

docs/deploy_lowcost.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ However, if your goal is to minimize costs while prototyping your application, f
2121
Enter a name that will be used for the resource group.
2222
This will create a new folder in the `.azure` folder, and set it as the active environment for any calls to `azd` going forward.
2323

24-
1. Use the free tier of **Azure AI Document Intelligence** (aka [Form Recognizer](https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/overview?view=doc-intel-4.0.0)):
24+
1. Use the free tier of **Azure AI Document Intelligence** (previously known as [Form Recognizer](https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/overview?view=doc-intel-4.0.0)):
2525

2626
```shell
2727
azd env set AZURE_FORMRECOGNIZER_SERVICE_SKU F0

infra/app/web.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ param searchServiceEndpoint string
4141
@description('The search index name')
4242
param searchIndexName string
4343

44-
@description('The Form Recognizer endpoint')
44+
@description('The Azure AI Document Intelligence endpoint')
4545
param formRecognizerEndpoint string
4646

4747
@description('The Computer Vision endpoint')

infra/main.bicep

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ param containerRegistryName string = ''
7575
@description('Name of the resource group for the Azure container registry')
7676
param containerRegistryResourceGroupName string = ''
7777

78-
@description('Location of the resource group for the Form Recognizer service')
78+
@description('Location of the resource group for the Azure AI Document Intelligence service')
7979
param formRecognizerResourceGroupLocation string = location
8080

81-
@description('Name of the resource group for the Form Recognizer service')
81+
@description('Name of the resource group for the Azure AI Document Intelligence service')
8282
param formRecognizerResourceGroupName string = ''
8383

84-
@description('Name of the Form Recognizer service')
84+
@description('Name of the Azure AI Document Intelligence service')
8585
param formRecognizerServiceName string = ''
8686

87-
@description('SKU name for the Form Recognizer service. Default: S0')
87+
@description('SKU name for the Azure AI Document Intelligence service. Default: S0')
8888
@allowed([ 'S0', 'F0' ])
8989
param formRecognizerSkuName string = 'S0'
9090

0 commit comments

Comments
 (0)