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/includes/get-started-fdp.md
+42-46Lines changed: 42 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,18 +36,14 @@ The Azure AI Foundry SDK is available in multiple languages, including Python, J
36
36
## Start with a project and model
37
37
38
38
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs).
39
-
1. On the home page, select **Create an agent**.
39
+
1. On the home page, search and then select the **gpt-4o** model.
40
40
41
41
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
42
42
43
+
1. On the model details page, select **Use this model**.
43
44
1. Fill in a name to use for your project and select **Create**.
44
-
1. Once your resources are created, you are in the agent playground.
45
-
1. If you're asked to select a model, search for and select **gpt-4o**.
46
-
1. Select **Confirm**.
47
-
1. Don't change the default settings. Select **Deploy**.
45
+
1. Once your resources are created, you are in the chat playground.
48
46
49
-
You now have both a project and a model available for your agent.
50
-
51
47
## Set up your environment
52
48
53
49
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
@@ -134,15 +130,53 @@ No installation is necessary to use the Azure AI Foundry portal.
134
130
135
131
---
136
132
133
+
## Run a chat completion
134
+
135
+
Chat completions are the basic building block of AI applications. Using chat completions you can send a list of messages and get a response from the model.
136
+
137
+
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
138
+
139
+
1. In the chat playground, fill in the prompt and select the **Send** button.
140
+
1. The model returns a response in the **Response** pane.
141
+
142
+
# [Python](#tab/python)
143
+
144
+
Substitute your endpoint for the `endpoint` in this code:
Agents have powerful capabilities through the use of tools. Start by chatting with an agent.
141
173
142
174
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
143
175
144
-
After the preceding steps, you're now in the agents playground.
176
+
When you're ready to try an agent, a default agent is created for you. To chat with this agent:
145
177
178
+
1. On the left pane, select **Playgrounds**.
179
+
1. In the **Agents playground** card, select **Let's go**.
146
180
1. Add instructions, such as, "You are a helpful writing assistant."
147
181
1. Start chatting with your agent, for example, "Write me a poem about flowers."
148
182
@@ -218,44 +252,6 @@ Replace `YOUR-FOUNDRY-RESOURCE-NAME` and `YOUR-PROJECT-NAME` with your values:
218
252
219
253
---
220
254
221
-
## Run a chat completion
222
-
223
-
Chat completions are the basic building block of AI applications. Using chat completions you can send a list of messages and get a response from the model instead of the agent.
224
-
225
-
# [Azure AI Foundry portal](#tab/azure-ai-foundry)
226
-
227
-
1. In the left pane, select **Playgrounds**.
228
-
1. Select **Try the chat playground**.
229
-
1. Fill in the prompt and select the **Send** button.
230
-
1. The model returns a response in the **Response** pane.
231
-
232
-
# [Python](#tab/python)
233
-
234
-
Substitute your endpoint for the `endpoint` in this code:
0 commit comments