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/how-to/create-projects.md
+187-2Lines changed: 187 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,192 @@ ai-usage: ai-assisted
20
20
21
21
# Create a project for Azure AI Foundry (Foundry projects)
22
22
23
-
This article describes how to create a project in [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs). Projects let you organize your work, such as agents, evaluations, and files, as you build stateful apps and explore new ideas.
23
+
This article describes how to create a Foundry project in [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs). Projects let you organize your work, such as agents, evaluations, and files, as you build stateful apps and explore new ideas.
- You must be **Owner** of the subscription to have appropriate access control necessary to create the Azure AI Foundry resource that is the parent of the project. If you don't have this access, have your administrator [create an AI Foundry resource](../../ai-services/multi-service-resource.md) for you to use. Then skip to [Create multiple projects on the same resource](#create-multiple) to create your project.
`. If in a notebook cell, use `%pip install` instead
62
+
`.
63
+
1. Use `pip show azure-mgmt-cognitiveservices` to verify your version is 13.7 or greater.
64
+
1. Start your script with the following code to create the `client` connection and variables used throughout this article. This example creates the project in East US:
1. (Optional) If you have multiple accounts, add the tenant ID of the Microsoft Entra ID you wish to use into the `DefaultAzureCredential`. Find your tenant ID from the [Azure portal](https://portal.azure.com) under **Microsoft Entra ID, External Identities**.
1. (Optional) If you're working on in the [Azure Government - US](/azure/azure-government/documentation-government-welcome) or [Azure operated by 21Vianet](https://azure.microsoft.com/global-infrastructure/services/?regions=china-east-2%2cchina-non-regional&products=all) regions, specify the region into which you want to authenticate. You can specify the region with `DefaultAzureCredential`. The following example authenticates to the Azure Government - US region:
- You must be **Owner** of the subscription to receive the appropriate access control needed to use the project.
87
+
-[Azure CLI](/cli/azure/install-azure-cli)
88
+
89
+
---
90
+
91
+
## Create a Foundry project
92
+
93
+
# [Azure AI Foundry portal](#tab/ai-foundry)
94
+
95
+
These steps provide a way to create a new Azure resource with basic, defaulted, settings.
96
+
97
+
> [!TIP]
98
+
> If your organization requires customized Azure configurations like alternative names, security controls or cost tags, use one of these methods instead to comply with your organization's Azure Policy compliance:
99
+
> *[Create your first AI Foundry resource](../../ai-services/multi-service-resource.md)
100
+
> *[Create an Azure AI Foundry resource using a Bicep file](./create-resource-template.md)
101
+
102
+
To create a Foundry project in [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs), follow these steps:
103
+
104
+
1. Sign in to [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs).
1. Select **Azure AI Foundry resource**, then select **Next**.
109
+
1. Provide a name for your project and select **Create**. Or see next section for advanced options.
110
+
111
+
### Advanced options
112
+
113
+
A Foundry project is created on an `AI Foundry` resource. This resource is created for you automatically when you create the project.
114
+
115
+
To customize the settings for your project, follow these steps:
116
+
117
+
1. In the **Create a project** form, select **Advanced options**.
118
+
119
+
1. Select an existing **Resource group** you want to use, or leave the default to create a new resource group.
120
+
121
+
> [!TIP]
122
+
> Especially for getting started we recommend you create a new resource group for your project. The resource group allows you to easily manage the project and all of its resources together.
123
+
124
+
1. Select a **Location** or use the default. The location is the region where the hub is hosted. Azure AI services availability differs per region. For example, certain models might not be available in certain regions.
125
+
126
+
1. Select **Create**. You see progress of resource creation and the project is created when the process is complete.
127
+
128
+
# [Python SDK](#tab/python)
129
+
130
+
To create a Foundry project:
131
+
132
+
133
+
1. Add this code to create a Foundry project, using the variables and `client` connection from the [Prerequisites](#prerequisites).
Copy file name to clipboardExpand all lines: articles/ai-foundry/how-to/hub-create-projects.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ ai-usage: ai-assisted
21
21
22
22
This article describes how to create a hub-based project in Azure AI Foundry. Use a hub project when you need prompt flow, managed compute, Azure Machine Learning compatibility, or advanced development features.
23
23
24
+
See [Types of projects](../what-is-azure-ai-foundry.md#project-types) for more information on the different project types.
0 commit comments