Skip to content

Commit 394f017

Browse files
committed
module 1/2 refresh
1 parent a93a428 commit 394f017

File tree

8 files changed

+4
-9
lines changed

8 files changed

+4
-9
lines changed

learn-pr/wwl-data-ai/ai-agent-fundamentals/includes/3-agent-development.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
There are many ways that developers can create AI agents, including multiple frameworks and SDKs.
22

3-
> [!NOTE]
4-
> Many of the services discussed in this module are in preview. Details are subject to change.
5-
63
## Azure AI Foundry Agent Service
74

85
Azure AI Foundry Agent Service is a managed service in Azure that is designed to provide a framework for creating, managing, and using AI agents within Azure AI Foundry. The service is based on the OpenAI Assistants API but with increased choice of models, data integration, and enterprise security; enabling you to use both the OpenAI SDK and the Azure Foundry SDK to develop agentic solutions.
-291 KB
Loading

learn-pr/wwl-data-ai/develop-ai-agent-azure/6-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ quiz:
1717
- content: "Deploy a compatible model"
1818
isCorrect: false
1919
explanation: "Incorrect. Deploying a compatible model is the second step. The first step is to create an Azure AI Foundry hub and project."
20-
- content: "Create an Azure AI Foundry hub and project"
20+
- content: "Create an Azure AI Foundry project"
2121
isCorrect: true
22-
explanation: "Correct. The first step in setting up Azure AI Foundry Agent Service is to create an Azure AI Foundry hub and project in your Azure subscription."
22+
explanation: "Correct. The first step in setting up Azure AI Foundry Agent Service is to create an Azure AI Foundry project in your Azure subscription."
2323
- content: "Make API calls using SDKs"
2424
isCorrect: false
2525
explanation: "Incorrect. Making API calls using SDKs is the third step after deploying a compatible model."

learn-pr/wwl-data-ai/develop-ai-agent-azure/includes/4-when-use-agent-service.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Foundry Agent Service provides several SDKs and a REST API for you to integrate
1313

1414
The diagram shows the following high-level steps that you must implement in your code:
1515

16-
1. Connect to the *AI Foundry project* for your agent, using the project connection string and Entra ID authentication.
16+
1. Connect to the *AI Foundry project* for your agent, using the project endpoint and Entra ID authentication.
1717
2. Get a reference to an existing agent that you created in the Azure AI Foundry portal, or create a new one specifying:
1818
- The *model deployment* in the project that the agent should use to interpret and respond to prompts.
1919
- *Instructions* that determine the functionality and behavior of the agent.
@@ -56,10 +56,8 @@ Knowledge tools enhance the context or knowledge of your agent. Available tools
5656
Action tools perform an action or run a function. Available tools include:
5757

5858
- **Code Interpreter**: A sandbox for model-generated Python code that can access and process uploaded files.
59-
- **Function**: Call your custom function code – you must provide function definitions and implementations.
59+
- **Custom function**: Call your custom function code – you must provide function definitions and implementations.
6060
- **Azure Function**: Call code in serverless Azure Functions.
6161
- **OpenAPI Spec**: Call external APIs based on the OpenAPI 3.0 spec.
6262

6363
By connecting built-in and custom tools, you can allow your agent to perform countless tasks on your behalf.
64-
65-
-7.12 KB
Loading
39.2 KB
Loading
-260 KB
Loading
77.6 KB
Loading

0 commit comments

Comments
 (0)