Skip to content

Commit ac93f16

Browse files
committed
tweaks
1 parent 8aec5f1 commit ac93f16

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

articles/ai-studio/tutorials/copilot-sdk-evaluate.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ The script allows you to review the results locally, by outputting the results i
6060

6161
The script also logs the evaluation results to the cloud project so that you can compare evaluation runs in the UI.
6262

63-
1. Create a file called **evaluate.py** in your **rag-tutorial** folder.
64-
1. Add the following code. Update the `dataset_path` and `evaluation_name` to fit your use case.
63+
1. Create a file called **evaluate.py** in your main folder.
64+
1. Add the following code.
6565

6666
:::code language="python" source="~/azureai-samples-nov2024/scenarios/rag/custom-rag-app/evaluate.py":::
6767

@@ -75,12 +75,14 @@ The evaluation script uses a helper script to define the target function and run
7575

7676
### Configure the evaluation model
7777

78-
Since the evaluation script calls the evaluation model many times, try to increase the number of tokens per minute that the model will accept.
78+
Since the evaluation script calls the model many times, you might want to increase the number of tokens per minute that for the evaluation model.
79+
80+
In Part 1 of this tutorial series, you created an **.env** file that specifies the name of the evaluation model, `gpt-4o-mini`. Try to increase the tokens per minute limit for this model, if you have available quota. If you don't have enough quota to increase the value, don't worry. The script is designed to handle limit errors.
7981

8082
1. In your project in Azure AI Studio, select **Models + endpoints**.
81-
1. Select **gpt-4o-mini**.
83+
1. Select **gpt-4o-mini**.
8284
1. Select **Edit**.
83-
1. If you have quota to increase the **Tokens per Minute Rate Limit**, try increasing it to 30. (If you're out of quota, don't worry. The script is designed to handle limit errors.)
85+
1. If you have quota to increase the **Tokens per Minute Rate Limit**, try increasing it to 30.
8486
1. Select **Save and close**.
8587

8688
### Run the evaluation script

0 commit comments

Comments
 (0)