Skip to content

Commit 08a4eba

Browse files
committed
acrolinx update
1 parent 334556d commit 08a4eba

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

articles/ai-foundry/agents/includes/quickstart-rest.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,23 @@ ms.date: 09/25/2025
1717

1818
## Configure and run an agent
1919

20-
## API call information
21-
2220
To authenticate your API requests, use the [az login](/cli/azure/authenticate-azure-cli-interactively) command to sign into your Azure subscription.
2321

2422
```azurecli
2523
az login
2624
```
2725

28-
Next, you will need to fetch the Entra ID token to provide as authorization to the API calls. Fetch the token using the CLI command:
26+
Next, you'll need to fetch the Entra ID token to provide as authorization to the API calls. Fetch the token using the CLI command:
2927
```azurecli
3028
az account get-access-token --resource 'https://ai.azure.com' | jq -r .accessToken | tr -d '"'
3129
```
3230
Set the access token as an environment variable named `AGENT_TOKEN`.
3331

34-
To successfully make REST API calls to Azure AI Foundry Agent Service, you will need to use the endpoint as below:
32+
To successfully make REST API calls to Azure AI Foundry Agent Service, you will need to use your project's endpoint:
3533

3634
`https://<your_ai_service_name>.services.ai.azure.com/api/projects/<your_project_name>`
3735

38-
For example, your endpoint may look something like:
36+
For example, your endpoint will look something like:
3937

4038
`https://exampleaiservice.services.ai.azure.com/api/projects/project`
4139

@@ -48,7 +46,7 @@ Set this endpoint as an environment variable named `AZURE_AI_FOUNDRY_PROJECT_END
4846
### Create an agent
4947

5048
> [!NOTE]
51-
> With Azure AI Agents Service the `model` parameter requires model deployment name. If your model deployment name is different than the underlying model name then you would adjust your code to ` "model": "{your-custom-model-deployment-name}"`.
49+
> With Azure AI Agents Service the `model` parameter requires model deployment name. If your model deployment name is different than the underlying model name, then you would adjust your code to ` "model": "{your-custom-model-deployment-name}"`.
5250
5351
```console
5452
curl --request POST \

0 commit comments

Comments
 (0)