Skip to content

Commit 12a5dbf

Browse files
committed
Fixes
1 parent fa9aa35 commit 12a5dbf

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ agent = project_client.agents.create_agent(
232232
```
233233

234234
# [REST API](#tab/rest)
235-
Follow the [REST API Quickstart](../quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`. The create the agent using:
235+
Follow the [REST API Quickstart](../../includes/quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`. The create the agent using:
236236
```console
237237
curl $AZURE_AI_AGENTS_ENDPOINT/assistants?api-version=2024-12-01-preview \
238238
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN" \
@@ -259,14 +259,14 @@ curl $AZURE_AI_AGENTS_ENDPOINT/assistants?api-version=2024-12-01-preview \
259259
"input_binding": {
260260
"type": "storage_queue",
261261
"storage_queue": {
262-
"queue_service_uri": storage_connection_string,
262+
"queue_service_endpoint": "https://storageaccount.queue.core.windows.net",
263263
"queue_name": "input"
264264
}
265265
},
266266
"output_binding": {
267267
"type": "storage_queue",
268268
"storage_queue": {
269-
"queue_service_uri": storage_connection_string,
269+
"queue_service_endpoint": "https://storageaccount.queue.core.windows.net",
270270
"queue_name": "output"
271271
}
272272
}
@@ -294,6 +294,7 @@ curl $AZURE_AI_AGENTS_ENDPOINT/threads?api-version=2024-12-01-preview \
294294
-H "Content-Type: application/json" \
295295
-d ''
296296
```
297+
---
297298

298299
## Create a run and check the output
299300

@@ -344,7 +345,8 @@ curl $AZURE_AI_AGENTS_ENDPOINT/threads/thread_abc123/runs/run_abc123 \
344345
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
345346
```
346347

347-
### Get the result of the run
348+
---
349+
## Get the result of the run
348350

349351
# [Python](#tab/python)
350352
```python

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const client = AIProjectsClient.fromConnectionString(
156156
```
157157

158158
# [REST API](#tab/rest)
159-
Follow the [REST API Quickstart](../quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`.
159+
Follow the [REST API Quickstart](../../includes/quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`.
160160

161161
---
162162

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const client = AIProjectsClient.fromConnectionString(
107107
```
108108

109109
# [REST API](#tab/rest)
110-
Follow the [REST API Quickstart](../quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`.
110+
Follow the [REST API Quickstart](../../includes/quickstart-rest.md) to set the right values for the environment variables `AZURE_AI_AGENTS_TOKEN` and `AZURE_AI_AGENTS_ENDPOINT`.
111111

112112
---
113113

0 commit comments

Comments
 (0)