Skip to content

Commit 45947d0

Browse files
authored
Merge pull request #2150 from MicrosoftDocs/main
1/3/2025 AM Publish
2 parents 2f26af9 + 49a925a commit 45947d0

File tree

7 files changed

+30
-16
lines changed

7 files changed

+30
-16
lines changed

articles/ai-services/containers/azure-container-instance-recipe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ All variables in angle brackets, `<>`, need to be replaced with your own values.
4444

4545
[!INCLUDE [Azure portal instructions for creating an ACI instance](includes/create-container-instances-resource.md)]
4646

47-
# [CLI](#tab/cli)
47+
# [Azure CLI](#tab/cli)
4848

49-
[!INCLUDE [CLI instructions for creating an ACI instance](../containers/includes/create-container-instances-resource-from-azure-cli.md)]
49+
[!INCLUDE [Azure CLI instructions for creating an ACI instance](../containers/includes/create-container-instances-resource-from-azure-cli.md)]
5050

5151
---
5252

@@ -68,7 +68,7 @@ All variables in angle brackets, `<>`, need to be replaced with your own values.
6868

6969
You have successfully created and used Azure AI containers in Azure Container Instance.
7070

71-
# [CLI](#tab/cli)
71+
# [Azure CLI](#tab/cli)
7272

7373
[!INCLUDE [API documentation](../includes/cognitive-services-containers-api-documentation.md)]
7474

articles/ai-services/containers/includes/create-container-instances-resource-from-azure-cli.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ ms.tool: azure-cli
1515

1616
## Create an Azure Container Instance resource from the Azure CLI
1717

18+
You must first [install the Azure CLI](/cli/azure/install-azure-cli) before running the commands in this article.
19+
1820
The YAML below defines the Azure Container Instance resource. Copy and paste the contents into a new file, named `my-aci.yaml` and replace the commented values with your own. Refer to the [template format][template-format] for valid YAML. Refer to the [container repositories and images][repositories-and-images] for the available image names and their corresponding repository. For more information of the YAML reference for Container instances, see [YAML reference: Azure Container Instances][aci-yaml-ref].
1921

2022
```yaml

articles/ai-studio/azure-openai-in-ai-studio.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ ms.custom: ignite-2023, build-2024, ignite-2024
1818

1919
Azure OpenAI Service provides REST API access to OpenAI's powerful language models. Azure OpenAI Studio was previously where you went to access and work with the Azure OpenAI Service. This studio is now integrated into Azure AI Foundry portal.
2020

21-
[!INCLUDE [new-name](includes/new-name.md)]
22-
2321
## Access Azure OpenAI Service in Azure AI Foundry portal
2422

2523
From the [Azure AI Foundry portal](https://ai.azure.com) landing page, use the **Let's go** button in the **Focused on Azure OpenAI Service?** section.

articles/ai-studio/concepts/architecture.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ author: Blackmist
1818

1919
Azure AI Foundry provides a unified experience for AI developers and data scientists to build, evaluate, and deploy AI models through a web portal, SDK, or CLI. Azure AI Foundry is built on capabilities and services provided by other Azure services.
2020

21-
[!INCLUDE [new-name](../includes/new-name.md)]
22-
2321
:::image type="content" source="../media/concepts/ai-studio-architecture.png" alt-text="Diagram of the high-level architecture of Azure AI Foundry." lightbox="../media/concepts/ai-studio-architecture.png":::
2422

2523
At the top level, Azure AI Foundry provides access to the following resources:

articles/ai-studio/how-to/create-projects.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- build-2024
1010
- ignite-2024
1111
ms.topic: how-to
12-
ms.date: 10/01/2024
12+
ms.date: 01/03/2025
1313
ms.reviewer: deeikele
1414
ms.author: sgilley
1515
author: sdgilley
@@ -26,13 +26,29 @@ For more information about the projects and hubs model, see [Azure AI Foundry hu
2626

2727
## Prerequisites
2828

29+
Use the following tabs to select the method you plan to use to create a project:
30+
31+
# [Azure AI Foundry portal](#tab/ai-studio)
32+
2933
- An Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/).
30-
- For Python SDK or CLI steps, an Azure AI Foundry hub. If you don't have a hub, see [How to create and manage an Azure AI Foundry hub](create-azure-ai-resource.md).
31-
- For Azure AI Foundry, a hub isn't required. It is created for you when needed.
34+
35+
# [Python SDK](#tab/python)
36+
37+
- An Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/).
38+
- [Azure Machine Learning SDK v2](https://aka.ms/sdk-v2-install).
39+
- An Azure AI Foundry hub. If you don't have a hub, see [Create a hub using the Azure Machine Learning SDK and CLI](develop/create-hub-project-sdk.md).
40+
41+
42+
# [Azure CLI](#tab/azurecli)
43+
44+
- An Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/).
45+
- [Azure CLI and the machine learning extension](/azure/machine-learning/how-to-configure-cli).
46+
- An Azure AI Foundry hub. If you don't have a hub, see [Create a hub using the Azure Machine Learning SDK and CLI](develop/create-hub-project-sdk.md).
47+
48+
---
3249

3350
## Create a project
3451

35-
Use the following tabs to select the method you plan to use to create a project:
3652

3753
# [Azure AI Foundry portal](#tab/ai-studio)
3854

@@ -78,9 +94,11 @@ The code in this section assumes you have an existing hub. If you don't have a
7894
1. Once the extension is installed and authenticated to your Azure subscription, use the following command to create a new Azure AI Foundry project from an existing Azure AI Foundry hub:
7995

8096
```azurecli
81-
az ml workspace create --kind project --hub-id {my_hub_ARM_ID} --resource-group {my_resource_group} --name {my_project_name}
97+
az ml workspace create --kind project --hub-id {my_hub_ID} --resource-group {my_resource_group} --name {my_project_name}
8298
```
8399

100+
Form `my_hub_ID` with this syntax: `/subscriptions/{subscription_id}/resourceGroups/{resource_group}/providers/Microsoft.MachineLearningServices/workspaces/{hub_name}`.
101+
84102
---
85103

86104
## View project settings

articles/ai-studio/includes/create-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.reviewer: deeikele
66
ms.author: sgilley
77
ms.service: azure-ai-studio
88
ms.topic: include
9-
ms.date: 11/19/2024
9+
ms.date: 01/03/2025
1010
ms.custom: include, build-2024, ignite-2024
1111
---
1212

@@ -23,7 +23,7 @@ To create a project in [Azure AI Foundry](https://ai.azure.com), follow these st
2323

2424
1. If you don't have a hub, a default one is created for you. If you want to customize the default values, see the next section.
2525

26-
1. Select **Create a project**. Or, if you want to customize a new hub, follow the steps in the next section.
26+
1. Select **Create**. Or, if you want to customize a new hub, follow the steps in the next section.
2727

2828
### Customize the hub
2929

articles/ai-studio/what-is-ai-studio.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ ms.custom: ignite-2023, build-2024, ignite-2024
1818

1919
[Azure AI Foundry](https://ai.azure.com) is a trusted platform that empowers developers to drive innovation and shape the future with AI in a safe, secure, and responsible way.
2020

21-
[!INCLUDE [new-name](includes/new-name.md)]
22-
2321
[Azure AI Foundry](https://ai.azure.com) is designed for developers to:
2422

2523
- Build generative AI applications on an enterprise-grade platform.

0 commit comments

Comments
 (0)