Skip to content

Commit 4b4220b

Browse files
committed
CLI, Java, JavaScript preview, update QS
1 parent 7c71363 commit 4b4220b

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
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 & 2 deletions
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

@@ -165,7 +165,9 @@ To create a [!INCLUDE [fdp](../includes/fdp-project-name.md)]:
165165

166166
[!INCLUDE [cli-create-project](cli-create-project.md)]
167167

168-
---
168+
--- -->
169+
170+
CLI comannds not currently available for creating a [!INCLUDE [fdp-project-name](fdp-project-name.md)].
169171

170172
## Create multiple projects on the same resource
171173

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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

@@ -30,7 +30,7 @@ The Azure AI Foundry SDK is available in multiple languages, including Python, J
3030
- An [Azure subscription](https://azure.microsoft.com/free/). If you don't have an Azure subscription, create a free account before you begin.
3131
- You must be **Owner** of the subscription to receive the appropriate access control needed to use your project.
3232

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

3535
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
3636

@@ -71,7 +71,7 @@ No installation is necessary to use the Azure AI Foundry portal.
7171
> [!TIP]
7272
> 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).
7373
74-
# [Java](#tab/java)
74+
# [Java (preview)](#tab/java)
7575
7676
1. [Install Java and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-java).
7777
1. Set these environment variables to use in your scripts:
@@ -84,7 +84,7 @@ No installation is necessary to use the Azure AI Foundry portal.
8484
> [!TIP]
8585
> 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).
8686
87-
# [JavaScript](#tab/javascript)
87+
# [JavaScript (preview)](#tab/javascript)
8888
8989
1. [Install JavaScript and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-javascript)
9090
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.
@@ -135,11 +135,11 @@ Substitute your value for the endpoint in this code:
135135
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="chat_completion":::
136136
137137
138-
# [Java](#tab/java)
138+
# [Java (preview)](#tab/java)
139139
140140
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/ChatCompletionSample.java" :::
141141
142-
# [JavaScript](#tab/javascript)
142+
# [JavaScript (preview)](#tab/javascript)
143143
144144
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="chat_completion":::
145145
@@ -168,11 +168,11 @@ Agents allow more powerful capabilities through the use of tools. First, let's w
168168
169169
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_and_run_agent":::
170170
171-
# [Java](#tab/java)
171+
# [Java (preview)](#tab/java)
172172
173173
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/AgentSample.java" :::
174174
175-
# [JavaScript](#tab/javascript)
175+
# [JavaScript (preview)](#tab/javascript)
176176
177177
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="create_and_run_agent" :::
178178
@@ -204,12 +204,12 @@ Now let's add a file search tool that enables us to do knowledge retrieval.
204204
205205
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_filesearch_agent":::
206206
207-
# [Java](#tab/java)
207+
# [Java (preview)](#tab/java)
208208
209209
:::code language="java" source="~/foundry-samples/samples/microsoft/java/mslearn-resources/quickstart/src/main/java/com/azure/ai/foundry/samples/FileSearchAgentSample.java" :::
210210
211211
212-
# [JavaScript](#tab/javascript)
212+
# [JavaScript (preview)](#tab/javascript)
213213
214214
:::code language="javascript" source="~/foundry-samples/samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js" id="create_filesearch_agent":::
215215

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

0 commit comments

Comments
 (0)