Skip to content

Commit 69fd182

Browse files
committed
acrolinx
1 parent 3159e30 commit 69fd182

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/ai-foundry/how-to/develop/cloud-evaluation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ In this article, you learn how to run evaluations in the cloud (preview) in pre-
2828
- Azure OpenAI Deployment with GPT model supporting `chat completion`, for example `gpt-4`.
2929
- Make sure you're first logged into your Azure subscription by running `az login`.
3030

31-
If this is your first time running evaluations and logging it to your Azure AI Foundry project, you may need to do a few additional set up steps.
31+
If this is your first time running evaluations and logging it to your Azure AI Foundry project, you might need to do a few additional setup steps.
3232

3333
1. [Create and connect your storage account](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/infrastructure-setup/01-connections/connection-storage-account.bicep) to your Azure AI Foundry project at the resource level. This bicep template provisions and connects a storage account to your Foundry project with key authentication.
3434
2. Make sure the connected storage account has access to all projects.
35-
3. If you connected your storage account with Entra ID, make sure to give MSI (Microsoft Identity) permissions for Storage Blob Data Owner to both your account and Foundry project resource in Azure Portal.
35+
3. If you connected your storage account with Microsoft Entra ID, make sure to give MSI (Microsoft Identity) permissions for Storage Blob Data Owner to both your account and Foundry project resource in Azure portal.
3636

3737
### Getting started
3838

39-
First, install Azure AI Foundry SDK's project client which will run the evaluations in the cloud
39+
First, install Azure AI Foundry SDK's project client which runs the evaluations in the cloud
4040

4141
```python
4242
uv install azure-ai-projects azure-identity
@@ -60,7 +60,7 @@ dataset_name = os.environ.get("DATASET_NAME", "dataset-test")
6060
dataset_version = os.environ.get("DATASET_VERSION", "1.0")
6161
```
6262

63-
Now you can define a client which will be used to run your evaluations in the cloud:
63+
Now you can define a client which is used to run your evaluations in the cloud:
6464

6565
```python
6666
import os
@@ -151,7 +151,7 @@ print("Status:", evaluation_response.status)
151151
## Specifying custom evaluators
152152

153153
> [!NOTE]
154-
> Azure AI Foundry Projects are not supported for this feature, use an Azure AI Hub Project instead.
154+
> Azure AI Foundry Projects aren't supported for this feature. Use an Azure AI Hub Project instead.
155155
156156
### Code-based custom evaluators
157157

0 commit comments

Comments
 (0)