Skip to content

Commit 5a0fe67

Browse files
authored
Add note about standard agent setup (#41877)
1 parent c5e7042 commit 5a0fe67

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

sdk/ai/azure-ai-agents/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,7 @@ def foo(arguments: func.QueueMessage, outputQueue: func.Out[str]) -> None:
634634
To deploy your function to Azure properly, follow Microsoft's official documentation step by step:
635635

636636
[Azure Functions Python Developer Guide](https://learn.microsoft.com/azure/azure-functions/create-first-function-cli-python?tabs=windows%2Cbash%2Cazure-cli%2Cbrowser)
637+
**Note:** The Azure Function may be only used in standard agent setup. Please follow the [instruction](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/infrastructure-setup/41-standard-agent-setup) to deploy an agent, capable of calling Azure Functions.
637638

638639
**Summary of required steps:**
639640

sdk/ai/azure-ai-agents/samples/agents_async/sample_agents_azure_functions_async.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
2727
Please see Getting Started with Azure Functions page for more information on Azure Functions:
2828
https://learn.microsoft.com/azure/azure-functions/functions-get-started
29+
**Note:** The Azure Function may be only used in standard agent setup. Please follow the instruction on the web page
30+
https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/infrastructure-setup/41-standard-agent-setup
31+
to deploy an agent, capable of calling Azure Functions.
2932
"""
3033

3134
import os

sdk/ai/azure-ai-agents/samples/agents_tools/sample_agents_azure_functions.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@
2222
2) MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in
2323
the "Models + endpoints" tab in your Azure AI Foundry project.
2424
3) STORAGE_SERVICE_ENDPONT - the storage service queue endpoint, triggering Azure function.
25-
Please see Getting Started with Azure Functions page for more information on Azure Functions:
26-
https://learn.microsoft.com/azure/azure-functions/functions-get-started
25+
26+
Please see Getting Started with Azure Functions page for more information on Azure Functions:
27+
https://learn.microsoft.com/azure/azure-functions/functions-get-started
28+
**Note:** The Azure Function may be only used in standard agent setup. Please follow the instruction on the web page
29+
https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/infrastructure-setup/41-standard-agent-setup
30+
to deploy an agent, capable of calling Azure Functions.
2731
"""
2832

2933
import os

sdk/ai/azure-ai-agents/samples/agents_tools/sample_agents_multiple_connected_agents.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@
2222
2) MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in
2323
the "Models + endpoints" tab in your Azure AI Foundry project.
2424
3) STORAGE_QUEUE_URI - the storage service queue endpoint, triggering Azure function.
25-
Please see Getting Started with Azure Functions page for more information on Azure Functions:
26-
https://learn.microsoft.com/azure/azure-functions/functions-get-started
25+
26+
Please see Getting Started with Azure Functions page for more information on Azure Functions:
27+
https://learn.microsoft.com/azure/azure-functions/functions-get-started
28+
**Note:** The Azure Function may be only used in standard agent setup. Please follow the instruction on the web page
29+
https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/infrastructure-setup/41-standard-agent-setup
30+
to deploy an agent, capable of calling Azure Functions.
2731
"""
2832

2933
import os

0 commit comments

Comments
 (0)