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
Agents can be created via the Azure AI Foundry portal, the SDK, or the API. Ideally agents should be a source controlled and versioned asset. You then deploy agents in a coordinated way with the rest of your workload's code.
235
+
236
+
This simulates deploying an AI agent through your pipeline from a network-connected build agent.
az rest -u $AI_FOUNDRY_AGENT_CREATE_URL -m "post" --resource "https://ai.azure.com" -b @chat-with-bing-output.json
242
+
```
216
243
217
-
### 3. Test the agent from the Azure AI Foundry portal in the playground
244
+
### 3. Test the agent from the Azure AI Foundry portal in the playground. *Optional.*
218
245
219
-
Here you'll test your orchestration agent by invoking it directly from the Azure AI Foundry portal's playground experience. This also helps you validate that your AI Foundry portal access is established correctly from your jump box.
246
+
Here you'll test your orchestration agent by invoking it directly from the Azure AI Foundry portal's playground experience. The Azure AI Foundry portal is only accessible from your private network, so you'll do this from your jump box.
247
+
248
+
*This step testing step is completely optional.*
220
249
221
250
1. Open the Azure portal to your subscription.
222
251
@@ -228,11 +257,11 @@ Here you'll test your orchestration agent by invoking it directly from the Azure
228
257
229
258
1. Click **Agents**.
230
259
231
-
1. Select the agent named 'TBD'.
260
+
1. Select the agent named 'Baseline Chatbot Agent'.
232
261
233
-
1. TODO
262
+
1. Click **Try in playground**.
234
263
235
-
1. Enter a question that would require grounding data through recent internet content, such as a notable current event or the weather today.
264
+
1. Enter a question that would require grounding data through recent internet content, such as a notable current event or the weather todayin your location.
236
265
237
266
1. A grounded response to your question should appear on the UI.
238
267
@@ -248,7 +277,7 @@ In a production environment, you use a CI/CD pipeline to:
248
277
249
278
For this deployment guide, you'll continue using your jump box to simulate part of that process.
250
279
251
-
1. Using the same Powershell terminal session from previous steps, download the web UI.
280
+
1. Using the same PowerShell terminal session from previous steps, download the web UI.
"description": "Example Azure AI Agent agent that uses the Bing Search tool to answer questions. Used in the Microsoft Learn AI chat reference architecture. https://learn.microsoft.com/azure/architecture/ai-ml/architecture/baseline-openai-e2e-chat",
4
+
"model": "MODEL_CONNECTION_NAME",
5
+
"instructions": "You are a helpful Chatbot agent. You'll consult the Bing Search tool to answer questions. Always search the web for information.",
0 commit comments