Skip to content

Commit f2d3d83

Browse files
committed
updating rest examples
1 parent ba200c9 commit f2d3d83

10 files changed

+117
-69
lines changed

articles/ai-services/agents/how-to/tools/azure-ai-search-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ for (let i = messages.data.length - 1; i >= 0; i--) {
415415
416416
## Create an Azure AI Client
417417
418-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`. The client creation is demonstrated in the next section.
418+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
419419
420420
## Get the connection ID for the Azure AI Search resource
421421

articles/ai-services/agents/how-to/tools/azure-functions-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ For any issues with the Python code, create an issue on the [sample code reposit
180180

181181
In the sample below we create a client and an agent that has the tools definition for the Azure Function
182182

183-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`. Then create the agent using:
183+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
184184

185185
```bash
186186
curl --request POST \

articles/ai-services/agents/how-to/tools/bing-code-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ Create a client object, which will contain the connection string for connecting
402402
>[!IMPORTANT]
403403
> 1. This REST API allows developers to invoke the Grounding with Bing Search tool through the Azure AI Foundry Agent Service. It does not send calls to the Grounding with Bing Search API directly.
404404
405-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`. The client creation is demonstrated in the next section.
405+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
406406
407407
408408
## Create an Agent with the Grounding with Bing search tool enabled

articles/ai-services/agents/how-to/tools/bing-custom-search-samples.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -383,15 +383,16 @@ Create a client object, which will contain the connection string for connecting
383383
>[!IMPORTANT]
384384
> 1. This REST API allows developers to invoke the Grounding with Bing Custom Search tool through the Azure AI Foundry Agent Service. It does not send calls to the Grounding with Bing Custom Search API directly.
385385
386-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`. The client creation is demonstrated in the next section.
386+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
387387
388388
389389
## Create an Agent with the Grounding with Bing Custom Search tool enabled
390390
391391
To make the Grounding with Bing Custom Search tool available to your agent, use a connection to initialize the tool and attach it to the agent. You can find your connection in the **connected resources** section of your project in the [Azure AI Foundry portal](https://ai.azure.com/).
392392
393393
```bash
394-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-15-preview \
394+
curl --request POST \
395+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=$API_VERSION \
395396
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
396397
-H "Content-Type: application/json" \
397398
-d '{
@@ -420,17 +421,19 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-15-previe
420421
421422
## Create a thread
422423
423-
```console
424-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-15-preview \
424+
```bash
425+
curl --request POST \
426+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=$API_VERSION \
425427
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
426428
-H "Content-Type: application/json" \
427429
-d ''
428430
```
429431
430432
## Add a user question to the thread
431433
432-
```console
433-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-15-preview \
434+
```bash
435+
curl --request POST \
436+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=api-version=$API_VERSION \
434437
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
435438
-H "Content-Type: application/json" \
436439
-d '{
@@ -443,8 +446,9 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-versi
443446
444447
Create a run and observe that the model uses the Grounding with Bing Custom Search tool to provide a response to the user's question.
445448
446-
```console
447-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2025-05-15-preview \
449+
```bash
450+
curl --request POST \
451+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=$API_VERSION \
448452
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
449453
-H "Content-Type: application/json" \
450454
-d '{
@@ -454,15 +458,17 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2
454458
455459
### Retrieve the status of the run
456460
457-
```console
458-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=2025-05-15-preview \
461+
```bash
462+
curl --request GET \
463+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=$API_VERSION \
459464
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
460465
```
461466
462467
### Retrieve the agent response
463468
464469
```console
465-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-15-preview \
470+
curl --request GET \
471+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
466472
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
467473
```
468474

articles/ai-services/agents/how-to/tools/code-interpreter-samples.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,13 @@ console.log(`Saved image file to: ${imageFileName}`);
380380
381381
:::zone pivot="rest-api"
382382
383+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
384+
383385
## Upload a file
384386
385387
```bash
386-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=2025-05-01 \
388+
curl --request POST \
389+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=$API_VERSION \
387390
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
388391
-F purpose="assistants" \
389392
-F file="@c:\\path_to_file\\file.csv"
@@ -392,7 +395,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=2025-05-01 \
392395
## Create an agent with the code interpreter tool
393396
394397
```bash
395-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-01 \
398+
curl --request POST \
399+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=$API_VERSION \
396400
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
397401
-H "Content-Type: application/json" \
398402
-d '{
@@ -412,7 +416,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-01 \
412416
## Create a thread
413417
414418
```bash
415-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-01 \
419+
curl --request POST \
420+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=$API_VERSION \
416421
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
417422
-H "Content-Type: application/json" \
418423
-d ''
@@ -421,7 +426,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-01 \
421426
## Add a user question to the thread
422427
423428
```bash
424-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-01 \
429+
curl --request POST \
430+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
425431
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
426432
-H "Content-Type: application/json" \
427433
-d '{
@@ -433,7 +439,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-versi
433439
## Run the thread
434440
435441
```bash
436-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2025-05-01 \
442+
curl --request POST \
443+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=$API_VERSION \
437444
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
438445
-H "Content-Type: application/json" \
439446
-d '{
@@ -444,14 +451,16 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2
444451
## Retrieve the status of the run
445452
446453
```bash
447-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=2025-05-01 \
454+
curl --request GET \
455+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=$API_VERSION \
448456
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
449457
```
450458
451459
## Retrieve the agent response
452460
453461
```bash
454-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-01 \
462+
curl --request GET \
463+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
455464
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
456465
```
457466

articles/ai-services/agents/how-to/tools/fabric.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -382,15 +382,13 @@ for (let i = messages.data.length - 1; i >= 0; i--) {
382382
383383
:::zone pivot="rest"
384384
385-
>[!IMPORTANT]
386-
> This REST API allows developers to invoke the Grounding with Bing Search tool through the Azure AI Foundry Agent Service. It does not send calls to the Grounding with Bing Search API directly.
387-
388-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`. The client creation is demonstrated in the next section.
385+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
389386
390387
### Create an agent with the Microsoft Fabric tool enabled
391388
392389
```bash
393-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-15-preview \
390+
curl --request POST \
391+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=$API_VERSION \
394392
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
395393
-H "Content-Type: application/json" \
396394
-d '{
@@ -417,7 +415,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-15-previe
417415
#### Create a thread
418416
419417
```bash
420-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-15-preview \
418+
curl --request POST \
419+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=$API_VERSION \
421420
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
422421
-H "Content-Type: application/json" \
423422
-d ''
@@ -426,7 +425,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-15-preview \
426425
#### Add a user question to the thread
427426
428427
```bash
429-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-15-preview \
428+
curl --request POST \
429+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
430430
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
431431
-H "Content-Type: application/json" \
432432
-d '{
@@ -440,7 +440,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-versi
440440
#### Run the thread
441441
442442
```bash
443-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2025-05-15-preview \
443+
curl --request POST \
444+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=$API_VERSION \
444445
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
445446
-H "Content-Type: application/json" \
446447
-d '{
@@ -451,14 +452,16 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2
451452
#### Retrieve the status of the run
452453
453454
```bash
454-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=2025-05-15-preview \
455+
curl --request GET \
456+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=$API_VERSION \
455457
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
456458
```
457459
458460
#### Retrieve the agent response
459461
460462
```bash
461-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-15-preview \
463+
curl --request GET \
464+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
462465
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
463466
```
464467
:::zone-end

articles/ai-services/agents/how-to/tools/file-search-upload-files.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -450,10 +450,13 @@ for (let i = messages.data.length - 1; i >= 0; i--) {
450450
451451
To access your files, the file search tool uses the vector store object. Upload your files and create a vector store. After creating the vector store, poll its status until all files are out of the in_progress state to ensure that all content is fully processed. The SDK provides helpers for uploading and polling.
452452
453+
Follow the [REST API Quickstart](../../quickstart.md#api-call-information?pivots=rest-api) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
454+
453455
### Upload a file
454456
455457
```bash
456-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=2025-05-01 \
458+
curl --request POST \
459+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=$API_VERSION \
457460
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
458461
-F purpose="assistants" \
459462
-F file="@c:\\path_to_file\\sample_file_for_upload.txt"
@@ -462,7 +465,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/files?api-version=2025-05-01 \
462465
### Create a vector store
463466
464467
```bash
465-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores?api-version=2025-05-01 \
468+
curl --request POST \
469+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores?api-version=$API_VERSION \
466470
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
467471
-H "Content-Type: application/json" \
468472
-d '{
@@ -473,7 +477,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores?api-version=2025-05-01 \
473477
### Attach the uploaded file to the vector store
474478
475479
```bash
476-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores/vs_abc123/files?api-version=2025-05-01 \
480+
curl --request POST \
481+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores/vs_abc123/files?api-version=$API_VERSION \
477482
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
478483
-H "Content-Type: application/json" \
479484
-d '{
@@ -484,8 +489,9 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/vector_stores/vs_abc123/files?api-versio
484489
## Create an agent and enable file search
485490
486491
```bash
487-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-01 \
488-
-H "api-key: $AZURE_OPENAI_API_KEY" \
492+
curl --request POST \
493+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=$API_VERSION \
494+
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
489495
-H 'Content-Type: application/json' \
490496
-d '{
491497
"name": "Financial Analyst Assistant",
@@ -502,7 +508,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/assistants?api-version=2025-05-01 \
502508
You can also attach files as Message attachments on your thread. Doing so creates another vector store associated with the thread, or, if there's already a vector store attached to this thread, attaches the new files to the existing thread vector store. When you create a Run on this thread, the file search tool queries both the vector store from your agent and the vector store on the thread.
503509
504510
```bash
505-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-01 \
511+
curl --request POST \
512+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=$API_VERSION \
506513
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
507514
-H "Content-Type: application/json" \
508515
-d ''
@@ -511,7 +518,8 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads?api-version=2025-05-01 \
511518
### Add a user question to the thread
512519
513520
```bash
514-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-01 \
521+
curl --request POST \
522+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
515523
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
516524
-H "Content-Type: application/json" \
517525
-d '{
@@ -527,7 +535,8 @@ Create a run and observe that the model uses the file search tool to provide a r
527535
### Run the thread
528536
529537
```bash
530-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2025-05-01 \
538+
curl --request POST \
539+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=$API_VERSION \
531540
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
532541
-H "Content-Type: application/json" \
533542
-d '{
@@ -538,14 +547,16 @@ curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs?api-version=2
538547
### Retrieve the status of the run
539548
540549
```bash
541-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=2025-05-01 \
550+
curl --request GET \
551+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/runs/run_abc123?api-version=$API_VERSION \
542552
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
543553
```
544554
545555
### Retrieve the agent response
546556
547557
```bash
548-
curl $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=2025-05-01 \
558+
curl --request GET \
559+
--url $AZURE_AI_FOUNDRY_PROJECT_ENDPOINT/threads/thread_abc123/messages?api-version=$API_VERSION \
549560
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
550561
```
551562

0 commit comments

Comments
 (0)