You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/tools/azure-functions.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,14 @@ ms.custom: azure-ai-agents
14
14
15
15
# Use Azure Functions with Azure AI Foundry Agent Service
16
16
17
-
The Azure AI Foundry Agent Service integrates with Azure Functions, enabling you to create intelligent, event-driven applications with minimal overhead. This combination allows AI-driven workflows to leverage the scalability and flexibility of serverless computing, making it easier to build and deploy solutions that respond to real-time events or complex workflows.
18
-
19
-
Azure Functions provide support for triggers and bindings, which simplify how your AI Agents interact with external systems and services. Triggers determine when a function executes—such as an HTTP request, message from a queue, or a file upload to Azure Blob Storage and allows agents to act dynamically based on incoming events.
20
-
17
+
The Azure AI Foundry Agent Service integrates with Azure Functions, enabling you to create intelligent, event-driven applications with minimal overhead. This combination allows AI-driven workflows to leverage the scalability and flexibility of serverless computing, making it easier to build and deploy solutions that respond to real-time events or complex workflows.
18
+
19
+
Currently, direct integration with Azure Functions is only supported for functions triggered by Azure Storage Queues. Other trigger types, such as HTTP or Blob Storage, are not natively supported at this time.
20
+
21
+
Azure Functions provide support for triggers and bindings, which simplify how your AI Agents interact with external systems and services. Triggers determine when a function executes—such as an HTTP request, message from a queue, or a file upload to Azure Blob Storage—and allow agents to act dynamically based on incoming events.
22
+
23
+
For HTTP-triggered Azure Functions, integration is possible by describing the function through an OpenAPI specification and registering it as a callable tool in the agent configuration. Alternatively, you can implement a queue-based wrapper function that receives messages from the agent and internally invokes the HTTP logic, enabling the use of the existing queue-based integration.
24
+
21
25
Meanwhile, bindings facilitate streamlined connections to input or output data sources, such as databases or APIs, without requiring extensive boilerplate code. For instance, you can configure a trigger to execute an Azure Function whenever a customer message is received in a chatbot and use output bindings to send a response via the Azure AI Agent.
Copy file name to clipboardExpand all lines: articles/ai-foundry/foundry-local/get-started.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.subservice: foundry-local
9
9
ms.topic: quickstart
10
10
ms.reviewer: samkemp
11
11
ms.author: jburchel
12
-
author: jburchel
12
+
author: jonburchel
13
13
reviewer: samuel100
14
14
ms.custom:
15
15
- build-2025
@@ -35,7 +35,7 @@ Your system must meet the following requirements to run Foundry Local:
35
35
-**Operating System**: Windows 10 (x64), Windows 11 (x64/ARM), Windows Server 2025, macOS.
36
36
-**Hardware**: Minimum 8GB RAM, 3GB free disk space. Recommended 16GB RAM, 15GB free disk space.
37
37
-**Network**: Internet connection for initial model download (optional for offline use)
38
-
-**Acceleration (optional)**: NVIDIA GPU (2,000 series or newer), AMD GPU (6,000 series or newer), Qualcomm Snapdragon X Elite (8GB or more of memory), or Apple silicon.
38
+
-**Acceleration (optional)**: NVIDIA GPU (2,000 series or newer), AMD GPU (6,000 series or newer), Intel iGPU, Qualcomm Snapdragon X Elite (8GB or more of memory), or Apple silicon.
39
39
40
40
Also, ensure you have administrative privileges to install software on your device.
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/how-to/role-based-access-control.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: mrbullwinkle
5
5
manager: nitinme
6
6
ms.service: azure-ai-openai
7
7
ms.topic: how-to
8
-
ms.date: 07/11/2025
8
+
ms.date: 07/23/2025
9
9
ms.author: mbullwin
10
10
recommendations: false
11
11
---
@@ -62,8 +62,7 @@ A user with only this role assigned would be unable to:
62
62
❌ Upload datasets for fine-tuning <br>
63
63
❌ View, query, filter Stored completions data <br>
64
64
❌ Access quota <br>
65
-
❌ Create customized content filters <br>
66
-
❌ Add a data source for the use your data feature
65
+
❌ Create customized content filters
67
66
68
67
### Cognitive Services OpenAI Contributor
69
68
@@ -74,15 +73,14 @@ This role has all the permissions of Cognitive Services OpenAI User and is also
74
73
✅ View, query, filter Stored completions data <br>
75
74
✅ Create new model deployments or edit existing model deployments **[Added Fall 2023]** <br>
76
75
✅ Grant access to the Assistants API <br>
77
-
✅ Add data sources to Azure OpenAI On Your Data.**You must also have the [Cognitive Services Contributor](#cognitive-services-contributor) role as well**.
76
+
✅ Add data sources to Azure OpenAI On Your Data.
78
77
79
78
A user with only this role assigned would be unable to:
80
79
81
80
❌ Create new Azure OpenAI resources <br>
82
81
❌ View/Copy/Regenerate keys under **Keys and Endpoint** <br>
83
82
❌ Access quota <br>
84
83
❌ Create customized content filters <br>
85
-
❌ Add a data source for Azure OpenAI On Your Data
86
84
87
85
### Cognitive Services Contributor
88
86
@@ -95,7 +93,7 @@ This role is typically granted access at the resource group level for a user in
95
93
✅ Ability to view what models are available for deployment in [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs) <br>
96
94
✅ Use the Chat, Completions, and DALL-E (preview) playground experiences to generate text and images with any models that have already been deployed to this Azure OpenAI resource <br>
97
95
✅ Create customized content filters <br>
98
-
✅ Add data sources to Azure OpenAI On Your Data. **You must also have the [Cognitive Services OpenAI Contributor](#cognitive-services-openai-contributor) role as well**.
96
+
✅ Add data sources to Azure OpenAI On Your Data. <br>
99
97
✅ Create new model deployments or edit existing model deployments (via API) <br>
100
98
✅ Create custom fine-tuned models **[Added Fall 2023]**<br>
101
99
✅ Upload datasets for fine-tuning **[Added Fall 2023]**<br>
@@ -152,7 +150,7 @@ All the capabilities of Cognitive Services Contributor plus the ability to:
152
150
|Create new Azure OpenAI resources|❌|❌|✅| ➖ |
153
151
|View/Copy/Regenerate keys under “Keys and Endpoint”|❌|❌|✅| ➖ |
154
152
|Create customized content filters|❌|❌|✅| ➖ |
155
-
|Add a data source for the “on your data” feature|❌|❌|✅| ➖ |
153
+
|Add a data source for the "on your data" feature|✅|✅|✅| ➖ |
156
154
|Access quota|❌|❌|❌|✅|
157
155
|Make inference API calls with Microsoft Entra ID| ✅ | ✅ | ❌ | ➖ |
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-azure-container-for-pytorch-environment.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
-
title: How to create Azure Container for PyTorch Custom Curated environment
2
+
title: How to create Azure Container for PyTorch custom curated environments
3
3
titleSuffix: Azure Machine Learning
4
-
description: Create custom curated Azure Container for PyTorch environments in Azure Machine Learning studio to run your machine learning models and reuse it in different scenarios.
4
+
description: Create custom curated Azure Container for PyTorch environments in Azure Machine Learning studio to run your machine learning models and reuse them in different scenarios.
# Create custom curated Azure Container for PyTorch (ACPT) environments in Azure Machine Learning studio
17
18
18
-
In this article you'll learn to create a custom environment in Azure Machine learning. Custom Environments allow you to extend curated environments and add Hugging Face (HF) transformers, datasets or install any other external packages with Azure Machine Learning. Azure machine Learning offers to create a new environment with docker context containing ACPT curated environment as a base image and additional packages on top of it.
19
+
In this article, you learn how to create a custom environment in Azure Machine Learning. Custom environments allow you to extend curated environments and add Hugging Face (HF) transformers, datasets, or install other external packages with Azure Machine Learning. Azure Machine Learning enables you to create a new environment with Docker context that contains an ACPT curated environment as a base image with additional packages on top of it.
19
20
20
21
## Prerequisites
21
22
@@ -32,14 +33,14 @@ In the [Azure Machine Learning studio](https://ml.azure.com/registries/environme
32
33
33
34
## Navigate to curated environments
34
35
35
-
Navigate to curated environments and search "acpt" to list all the available ACPT curated environments. Selecting the environment shows details of the environment.
36
+
Navigate to curated environments and search for "acpt" to list all available ACPT curated environments. Select an environment to view its details.
36
37
37
38
:::image type="content" source="./media/how-to-azure-container-for-pytorch-environment/navigate-to-curated-environments.png" alt-text="Screenshot of navigating to curated environments." lightbox= "./media/how-to-azure-container-for-pytorch-environment/navigate-to-curated-environments.png":::
38
39
39
40
40
41
## Get details of the curated environments
41
42
42
-
To create a custom environment, you need the base docker image repository, which can be found in the **Description** section as **Azure Container Registry**. Copy the **Azure Container Registry** name, which is used later when you create a new custom environment.
43
+
To create a custom environment, you need the base Docker image repository, which you can find in the **Description** section as **Azure Container Registry**. Copy the **Azure Container Registry** name to use later when you create a new custom environment.
@@ -51,22 +52,22 @@ Go back and select the **Custom Environments** tab.
51
52
52
53
## Create custom environments
53
54
54
-
Select **+ Create**. In the "Create Environment" window, name the environment, description, and select **Create a new docker context** in the Select environments type section.
55
+
Select **+ Create**. In the "Create Environment" window, provide a name and description for the environment, and select **Create a new docker context** in the "Select environment type" section.
55
56
56
57
:::image type="content" source="./media/how-to-azure-container-for-pytorch-environment/create-environment-window.png" alt-text="Screenshot of creating custom environment." lightbox= "./media/how-to-azure-container-for-pytorch-environment/create-environment-window.png":::
57
58
58
-
Paste the docker image name that you copied in previously. Configure your environment by declaring the base image and add any env variables you want to use and the packages that you want to include.
59
+
Paste the Docker image name that you copied previously. Configure your environment by declaring the base image and adding any environment variables you want to use and the packages that you want to include.
59
60
60
61
:::image type="content" source="./media/how-to-azure-container-for-pytorch-environment/configure-environment.png" alt-text="Screenshot of configuring the environment with name, packages with docker context." lightbox= "./media/how-to-azure-container-for-pytorch-environment/configure-environment.png":::
61
62
62
-
Review your environment settings, add any tags if needed and select on the **Create** button to create your custom environment.
63
+
Review your environment settings, add any tags if needed, and select the **Create** button to create your custom environment.
63
64
64
-
That's it! You've now created a custom environment in Azure Machine Learning studio and can use it to run your machine learning models.
65
+
You've now created a custom environment in Azure Machine Learning studio that you can use to run your machine learning models.
65
66
66
67
## Next steps
67
68
68
69
- Learn more about environment objects:
69
-
-[What are Azure Machine Learning environments?](concept-environments.md).
70
-
-Learn more about [curated environments](concept-environments.md).
71
-
- Learn more about [training models in Azure Machine Learning](concept-train-machine-learning-model.md).
70
+
-[What are Azure Machine Learning environments?](concept-environments.md)
71
+
- Learn more about [curated environments](concept-environments.md)
72
+
- Learn more about [training models in Azure Machine Learning](concept-train-machine-learning-model.md)
72
73
-[Azure Container for PyTorch (ACPT) reference](resource-azure-container-for-pytorch.md)
0 commit comments