Skip to content

Commit 2462d38

Browse files
committed
rearrange sections and remove SDK
1 parent d5ab1a8 commit 2462d38

File tree

1 file changed

+32
-27
lines changed

1 file changed

+32
-27
lines changed

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

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,36 @@ 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+
34+
35+
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
36+
37+
Use either the Azure AI Foundry portal or Azure CLI to create a project.
38+
39+
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com).
40+
1. On the home page, select **Create the future**. This creates a project and also include steps to start working with a basic Agent.
41+
42+
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
43+
44+
1. Fill in a name for your project and select **Create**.
45+
46+
## Deploy a model
47+
48+
[!INCLUDE [tip-left-pane](../includes/tip-left-pane.md)]
49+
50+
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.
51+
1. Or else, sign in to the [Azure AI Foundry portal](https://ai.azure.com), select your project, and select **Model catalog**.
52+
1. Search for the model you want to deploy. For this quickstart, select **gpt-4o**.
53+
1. Select **Confirm**.
54+
1. Don't change the default settings. Select **Deploy**.
55+
3356
### Set up your environment
3457

3558
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
3659

3760
No installation is necessary to use the Azure AI Foundry portal.
3861

39-
# [Python SDK](#tab/python)
62+
# [Python](#tab/python)
4063

4164
1. [Install Python and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-python)
4265
1. Install these packages:
@@ -95,29 +118,10 @@ No installation is necessary to use the Azure AI Foundry portal.
95118
96119
---
97120
98-
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
99-
100-
Use either the Azure AI Foundry portal or Azure CLI to create a project.
101-
102-
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com).
103-
1. On the home page, select **Create the future**. This creates a project and also include steps to start working with a basic Agent.
104-
105-
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
106-
107-
1. Fill in a name for your project and select **Create**.
108-
109-
## Deploy a model
110-
111-
[!INCLUDE [tip-left-pane](../includes/tip-left-pane.md)]
112-
113-
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.
114-
1. Or else, sign in to the [Azure AI Foundry portal](https://ai.azure.com), select your project, and select **Model catalog**.
115-
1. Search for the model you want to deploy. For this quickstart, select **gpt-4o**.
116-
1. Select **Confirm**.
117-
1. Don't change the default settings. Select **Deploy**.
118-
119121
## Run a chat completion
120122
123+
Chat completions are the basic building block of AI applications. Using chat completions you can send a list of messages and get a response.
124+
121125
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
122126
123127
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.
@@ -126,7 +130,7 @@ Use either the Azure AI Foundry portal or Azure CLI to create a project.
126130
1. Fill in the prompt and select the **Send** button.
127131
1. The model returns a response in the **Response** pane.
128132
129-
# [Python SDK](#tab/python)
133+
# [Python](#tab/python)
130134
131135
Substitute your value for the endpoint in this code:
132136
@@ -150,6 +154,8 @@ Substitute your value for the endpoint in this code:
150154
151155
## Create and run an agent
152156
157+
Agents allow more powerful capabilities through the use of tools. First, let's write the same chat completion code using agents.
158+
153159
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
154160
155161
1. In your project, on the left pane, select **Agents**.
@@ -160,7 +166,7 @@ Substitute your value for the endpoint in this code:
160166
1. At the top of the **Setup** pane, select **Try in playground**.
161167
1. Start chatting with your agent, for example, "Write me a poem about flowers"
162168
163-
# [Python SDK](#tab/python)
169+
# [Python](#tab/python)
164170
165171
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_and_run_agent":::
166172
@@ -180,8 +186,7 @@ Substitute your value for the endpoint in this code:
180186
181187
## Add files to the agent
182188
183-
184-
Enable your agent to search and retrieve information from a provided file.
189+
Now let's add a file search tool that enables us to do knowledge retrieval.
185190
186191
* Download [product_info_1.md](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/data/product_info_1.md) to give to your agent.
187192
@@ -197,7 +202,7 @@ Enable your agent to search and retrieve information from a provided file.
197202
1. Ask a question, such as, "Hello, what Contoso products do you know?"
198203
1. To add more files, select the **...** on the AgentVectorStore, then select **Manage**.
199204
200-
# [Python SDK](#tab/python)
205+
# [Python](#tab/python)
201206
202207
:::code language="python" source="~/foundry-samples/samples/microsoft/python/mslearn-resources/quickstart/quickstart.py" id="create_filesearch_agent":::
203208

0 commit comments

Comments
 (0)