|
1 | 1 | # How To Create Azure AI Service
|
2 |
| -1. Navigate to https://aka.ms/CognitiveServicesAIServices . |
3 |
| -2. Select your Azure subscription. |
4 |
| -3. Select the available Resource group. |
5 |
| -4. Choose the region which support Content Understanding service from below tables. |
6 |
| - | Geography | Region | Region Identifier| |
7 |
| - | --------- | -------------- | ---------------- | |
8 |
| - | US | West US | westus | |
9 |
| - | Europe | Sweden Central | swedencentral | |
10 |
| - | Australia | Australia East | australiaeast | |
11 |
| -5. Enter a name for your resource. |
12 |
| -6. Choose a price plan. |
| 2 | + |
| 3 | +This guide covers the latest configuration using **Azure AI Foundry**, including creating a Foundry Hub and Project, and deploying Azure AI Content Understanding. |
| 4 | + |
| 5 | +## 1. Create a Foundry Hub |
| 6 | +- Go to [Azure Portal AI Foundry Resource](https://portal.azure.com/#create/Microsoft.CognitiveServicesAIFoundry). |
| 7 | +- Select your Azure subscription. |
| 8 | +- Choose or create a Resource Group. |
| 9 | +- **Choose a supported region** from the table below: |
| 10 | + |
| 11 | + | Geography | Region | Region Identifier | |
| 12 | + | --------- | -------------- | ------------------ | |
| 13 | + | US | West US | westus | |
| 14 | + | Europe | Sweden Central | swedencentral | |
| 15 | + | Australia | Australia East | australiaeast | |
| 16 | + |
| 17 | +- Enter a name for your Content Understanding resource. |
| 18 | +- Select a pricing plan. |
13 | 19 | <img src="./create_srv_1.png" width="600" />
|
14 |
| -7. Configure other settings for your resource as needed, read, and accept the conditions (as applicable), and then select Review + create. |
| 20 | +- Configure additional settings as needed, read and accept the terms, then click **Create**. |
15 | 21 | <img src="./create_srv_2.png" width="600" />
|
16 |
| -8. Azure will run a quick validation check, after a few seconds you should see a green banner that says Validation Passed. |
17 |
| -9. Once the validation banner appears, select the Create button from the bottom-left corner. |
18 |
| -10. After you select create, you'll be redirected to a new page that says Deployment in progress. After a few seconds, you'll see a message that says, Your deployment is complete. |
19 |
| -11. Navigate to the resouce. In the left navigation menu, select "Keys and Endpoint", then get the **key** and **endpoint**. |
20 |
| - <img src="./create_srv_3.png" width="600" /> |
21 |
| -Now,you could start with these information to run the samples. |
| 22 | +- Wait for Azure's validation (look for a green "Validation Passed" banner). |
| 23 | +- Click **Create**. Deployment will begin, and after a few seconds, you should see "Your deployment is complete." |
| 24 | + |
| 25 | +## 2. Get Keys and Endpoint |
| 26 | +- Navigate to your deployed resource. |
| 27 | +- In the left menu, select **Keys and Endpoint**. |
| 28 | +- Copy the following information: |
| 29 | + - **Endpoint**: Format is |
| 30 | + ``` |
| 31 | + AZURE_AI_ENDPOINT = "https://<AzureAIContentUnderstandingResourceName>.services.ai.azure.com/" |
| 32 | + ``` |
| 33 | + - **Primary Key**: |
| 34 | + ``` |
| 35 | + AZURE_AI_API_KEY = <your_primary_key> |
| 36 | + ``` |
| 37 | + - **API Version**: |
| 38 | + ``` |
| 39 | + AZURE_AI_API_VERSION = "2025-05-01-preview" |
| 40 | + ``` |
| 41 | + <img src="./create_srv_3.png" width="600" /> |
| 42 | +
|
| 43 | +Now you are ready to use these credentials to run the samples. |
| 44 | +
|
| 45 | +--- |
| 46 | +**Note:** |
| 47 | +- Always use the **Foundry Hub > Foundry Project** structure for Azure AI Content Understanding configuration. |
| 48 | +- Make sure to select a supported region for Content Understanding during deployment. |
0 commit comments