Skip to content

Commit 8902811

Browse files
authored
Evaluation: Update TSG to tell customers how to find the right info for role assignment (Azure#38525)
* Tell customers how to find the right info for role assignment * update the command
1 parent a95d05a commit 8902811

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sdk/evaluation/azure-ai-evaluation/TROUBLESHOOTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ This guide walks you through how to investigate failures, common errors in the `
2626
- Ensure that you assign the proper permissions to the storage account linked to your Azure AI Studio hub. This can be done with the following command. More information can be found [here](https://aka.ms/credentialleshub).
2727

2828
```Shell
29+
# <mySubscriptionID>: Subscription ID of the Azure AI Studio hub's linked storage account (available in Azure AI hub resource view in Azure Portal).
30+
# <myResourceGroupName>: Resource group of the Azure AI Studio hub's linked storage account.
31+
# <user-id>: User object ID for role assignment (retrieve with "az ad user show" command).
32+
2933
az role assignment create --role "Storage Blob Data Contributor" --scope /subscriptions/<mySubscriptionID>/resourceGroups/<myResourceGroupName> --assignee-principal-type User --assignee-object-id "<user-id>"
3034
```
3135

@@ -50,7 +54,7 @@ The Adversarial simulator does not support selecting individual harms, instead w
5054
### Simulator is slow
5155
5256
Identify the type of simulations being run (adversarial or non-adversarial).
53-
Adjust parameters such as `api_call_retry_sleep_sec`, `api_call_delay_sec`, and `concurrent_async_task`. Please note that rate limits to llm calls can be both tokens per minute and requests per minute.
57+
Adjust parameters such as `api_call_retry_sleep_sec`, `api_call_delay_sec`, and `concurrent_async_task`. Please note that rate limits to llm calls can be both tokens per minute and requests per minute.
5458
5559
## Logging
5660

0 commit comments

Comments
 (0)