Skip to content

Commit 50ef73e

Browse files
authored
Merge pull request #4916 from sdgilley/sdg-fdp-updates
[DIRTY PR] Re-fix merge conflicts in release-build-ai-foundry Bringing this fix in - reviewed with author
2 parents bb081fa + ed148a2 commit 50ef73e

File tree

8 files changed

+27
-751
lines changed

8 files changed

+27
-751
lines changed

articles/ai-foundry/how-to/develop/sdk-overview.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ The Azure AI Foundry SDK is a set of client libraries and services designed to w
3939
az login
4040
```
4141

42+
[!INCLUDE [feature-preview](../../includes/feature-preview.md)]
43+
4244
## Unified Projects client library
4345

4446
The Azure AI Foundry Projects client library is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
@@ -67,7 +69,7 @@ The Azure AI Foundry Projects client library is a unified library that enables y
6769
::: zone pivot="programming-language-java"
6870

6971

70-
* Add these packages to your installation:
72+
* Add these packages to your installation (preview):
7173
* `com.azure.ai.projects`
7274
* `com.azure.core`
7375

@@ -92,7 +94,7 @@ The Azure AI Foundry Projects client library is a unified library that enables y
9294
9395
::: zone pivot="programming-language-javascript"
9496
95-
* Install dependencies:
97+
* Install dependencies (preview):
9698
9799
```bash
98100
npm install @azure/ai-projects @azure/identity

articles/ai-foundry/includes/create-project-fdp.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ To create a [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
145145

146146
# [Azure CLI](#tab/azurecli)
147147

148-
To create a [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
148+
<!-- To create a [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
149149

150150
1. Authenticate to your Azure subscription from the Azure CLI with the following command:
151151

@@ -164,9 +164,12 @@ To create a [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
164164
1. Now use the following commands to create a new [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
165165

166166
[!INCLUDE [cli-create-project](cli-create-project.md)]
167+
-->
167168

168169
---
169170

171+
CLI comannds not currently available for creating a [!INCLUDE [fdp-project-name](fdp-project-name.md)].
172+
170173
## Create multiple projects on the same resource
171174

172175
[!INCLUDE [create-second-fdp-project](create-second-fdp-project.md)]

articles/ai-foundry/includes/deploy-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To work with a model, you first deploy it into a project.
1717
1. Sign in to [Azure AI Foundry](https://ai.azure.com).
1818
1. Studio remembers where you were last, so what you do next depends on where you are:
1919

20-
* If you're new to Azure AI Foundry, select **Create the future**. Add a name for your project and select **Create**.
20+
* If you're new to Azure AI Foundry, select **Create an agent**. Add a name for your project and select **Create**.
2121
* If you see a list of projects, select the one you want to use. You can use either a [!INCLUDE [hub-project-name](hub-project-name.md)] or a [!INCLUDE [fdp-project-name](fdp-project-name.md)].
2222
* If you're already in a project and want to use a new one, select **Azure AI Foundry** in the top left corner, then select **Create new** to create the new project.
2323

articles/ai-foundry/includes/get-started-fdp.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ author: sgilley
55
ms.author: sgilley
66
ms.service: azure-ai-foundry
77
ms.topic: include
8-
ms.date: 04/30/2025
8+
ms.date: 05/13/2025
99
ms.custom: include file
1010
---
1111

12-
[!INCLUDE [fdp-rollout](fdp-rollout.md)]
13-
1412
In this quickstart, you use [Azure AI Foundry](https://ai.azure.com) to:
1513

1614
> [!div class="checklist"]
@@ -30,22 +28,22 @@ The Azure AI Foundry SDK is available in multiple languages, including Python, J
3028
- An [Azure subscription](https://azure.microsoft.com/free/). If you don't have an Azure subscription, create a free account before you begin.
3129
- You must be **Owner** of the subscription to receive the appropriate access control needed to use your project.
3230

33-
31+
[!INCLUDE [feature-preview](feature-preview.md)]
3432

3533
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
3634

3735
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com).
38-
1. On the home page, select **Create the future**. This creates a project and also include steps to start working with a basic Agent.
36+
1. On the home page, select **Create an agent**. This creates a project and also include steps to start working with a basic Agent.
3937

40-
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
38+
<!-- :::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal."::: -->
4139

4240
1. Fill in a name for your project and select **Create**.
4341

4442
## Deploy a model
4543

4644
[!INCLUDE [tip-left-pane](../includes/tip-left-pane.md)]
4745

48-
1. If you just used the Azure AI Foundry portal to create the project with the **Create the future** link, you're next prompted to deploy a model.
46+
1. If you just used the Azure AI Foundry portal to create the project with the **Create an agent** link, you're next prompted to deploy a model.
4947
1. Or else, sign in to the [Azure AI Foundry portal](https://ai.azure.com), select your project, and select **Model catalog**.
5048
1. Search for the model you want to deploy. For this quickstart, select **gpt-4o**.
5149
1. Select **Confirm**.
@@ -71,7 +69,7 @@ No installation is necessary to use the Azure AI Foundry portal.
7169
> [!TIP]
7270
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/python/mslearn-resources/quickstart).
7371
74-
# [Java](#tab/java)
72+
# [Java (preview)](#tab/java)
7573
7674
1. [Install Java and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-java).
7775
1. Set these environment variables to use in your scripts:
@@ -84,7 +82,7 @@ No installation is necessary to use the Azure AI Foundry portal.
8482
> [!TIP]
8583
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/java/mslearn-resources/quickstart).
8684
87-
# [JavaScript](#tab/javascript)
85+
# [JavaScript (preview)](#tab/javascript)
8886
8987
1. [Install JavaScript and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-javascript)
9088
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your JavaScript scripts.
@@ -122,7 +120,7 @@ Chat completions are the basic building block of AI applications. Using chat com
122120
123121
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
124122
125-
1. If you used **Create the future** to create the project, you'll now find yourself in the Agents playground, ready to try it out. You'll come back here in a moment, but first let's play with the model.
123+
1. If you used **Create an agent** to create the project, you'll now find yourself in the Agents playground, ready to try it out. You'll come back here in a moment, but first let's play with the model.
126124
1. In the left pane, select **Playgrounds**.
127125
1. Select **Try the chat playground**.
128126
1. Fill in the prompt and select the **Send** button.
@@ -135,11 +133,11 @@ Substitute your value for the endpoint in this code:
135133
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="chat_completion":::
136134
137135
138-
# [Java](#tab/java)
136+
# [Java (preview)](#tab/java)
139137
140138
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/ChatCompletionSample.java" :::
141139
142-
# [JavaScript](#tab/javascript)
140+
# [JavaScript (preview)](#tab/javascript)
143141
144142
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="chat_completion":::
145143
@@ -168,11 +166,11 @@ Agents allow more powerful capabilities through the use of tools. First, let's w
168166
169167
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_and_run_agent":::
170168
171-
# [Java](#tab/java)
169+
# [Java (preview)](#tab/java)
172170
173171
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/AgentSample.java" :::
174172
175-
# [JavaScript](#tab/javascript)
173+
# [JavaScript (preview)](#tab/javascript)
176174
177175
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="create_and_run_agent" :::
178176
@@ -204,12 +202,12 @@ Now let's add a file search tool that enables us to do knowledge retrieval.
204202
205203
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_filesearch_agent":::
206204
207-
# [Java](#tab/java)
205+
# [Java (preview)](#tab/java)
208206
209207
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/FileSearchAgentSample.java" :::
210208
211209
212-
# [JavaScript](#tab/javascript)
210+
# [JavaScript (preview)](#tab/javascript)
213211
214212
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="create_filesearch_agent":::
215213

articles/ai-foundry/quickstarts/get-started-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure AI Foundry
44
description: This article provides instructions on how to start using the Azure AI Foundry portal and the Azure AI Foundry SDK.
55
manager: scottpolly
66
ms.service: azure-ai-foundry
7-
ms.custom: build-2024, devx-track-azurecli, devx-track-python, ignite-2024, update-code
7+
ms.custom: build-2024, devx-track-azurecli, devx-track-python, ignite-2024, update-code2
88
ms.topic: how-to
99
ms.date: 05/12/2025
1010
ms.reviewer: dantaylo

articles/ai-foundry/what-is-azure-ai-foundry.md

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

1717
# What is Azure AI Foundry?
1818

19-
[!INCLUDE [fdp-rollout](includes/fdp-rollout.md)]
20-
2119
[Azure AI Foundry](https://ai.azure.com) provides a unified platform for enterprise AI operations, model builders, and application development. This foundation combines production-grade infrastructure with friendly interfaces, ensuring organizations can build and operate AI applications with confidence.
2220

2321
[Azure AI Foundry](https://ai.azure.com) is designed for developers to:

0 commit comments

Comments
 (0)