Skip to content

Commit 4da7112

Browse files
author
Sherry Yang
committed
Minor edits.
1 parent 3091ad0 commit 4da7112

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/2-generative-ai-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Choosing the right model in Foundry starts with understanding **your workload, t
6767
|**Multimodal**| Phi‑4‑multimodal‑instruct, GPT‑5.x chat multimodal, Mistral‑Large‑3 | Support for images/audio in chat completions|
6868

6969
> [!NOTE]
70-
> When the use case is well‑defined, instead of choosing a model from the model catalog, you may choose a [**Foundry tool**](https://azure.microsoft.com/en-us/products/ai-foundry/tools/?msockid=2bbfe2e7589c63f40fd5f7ea5c9c654c#Tools). Foundry tools are powered by prebuilt models that provide predictable performance, built‑in compliance, and fast time‑to‑value without custom modeling.
70+
> When the use case is well‑defined, instead of choosing a model from the model catalog, you may choose a [**Foundry tool**](https://azure.microsoft.com/products/ai-foundry/tools/?msockid=2bbfe2e7589c63f40fd5f7ea5c9c654c#Tools). Foundry tools are powered by prebuilt models that provide predictable performance, built‑in compliance, and fast time‑to‑value without custom modeling.
7171
7272
#### Score and compare models in Foundry
7373

learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/3-using-generative-ai-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Unlike the user prompt, which is the end-user request or question (example: Wher
1414

1515
The playground is a useful bridge between Foundry and code. After you test representative prompts, you can use the same system and user prompts and parameter values in your code. The playground provides code that can call your Foundry deployment via the OpenAI‑compatible *Responses* API. The code is essentially what is running when you use the chat interface to configure settings and send user prompts.
1616

17-
![Screenshot of code example in Foundry portal that is based in the playground.](../media/chat-code.example.png)
17+
![Screenshot of code example in Foundry portal that is based in the playground.](../media/chat-code-example.png)
1818

1919
You can take the code as a starting point for creating your own chat client.
2020

learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/5-using-an-agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![Screenshot of publishing agent in the Foundry portal.](../media/publish-agent.png)
44
![Screenshot of agent after it is published in the Foundry portal with the endpoint information.](../media/agent-published.png)
55

6-
Once you've published an agent, you have a stable endpoint to integrate the agent anywhere. You can use an agent from a client application by using the **Foundry Projects SDK** to connect to the project and call it from a client using the **Project API**.
6+
Publishing an agent gives you a stable endpoint to integrate the agent in code. You can use an agent from a client application by using the **Foundry Projects SDK** to connect to the project and call it from a client using the **Project API**.
77

88
The Project API enables you to:
99
- Integrate agents into web apps, bots, or backend workflows
@@ -52,11 +52,11 @@ print(f"Response output: {response.output_text}")
5252
```
5353

5454
You can evaluate an agent the same way as a model—testing reasoning steps, tool use, and orchestration quality.
55-
This is helpful when building multi‑step or tool‑enhanced agents. In production environments, model behavior can drift. Foundry supports continuous evaluation to monitor relevance, safety, accuracy, cost and token efficiency.
55+
In production environments, model behavior can drift. Foundry supports continuous evaluation to monitor relevance, safety, accuracy, cost, and token efficiency.
5656

5757
## Managing costs
5858

59-
A Foundry agent itself is freethe real cost comes from what it uses:
59+
A Foundry agent itself is free; the real cost comes from what it uses, mainly:
6060
- The models it calls
6161
- The tools it invokes
6262
- The data services it connects to
@@ -72,7 +72,7 @@ A Foundry agent itself is free — the real cost comes from what it uses:
7272
|Deployment settings|For example: pay-as-you-go|
7373
|External knowledge connections|Fabric, SharePoint, etc.|
7474

75-
The more complex and data-rich your agent, the higher the cost. The cost of using a model is influenced by three variables:
75+
The more complex and data-rich your agent, the higher the cost. Three of the main cost drivers of a model are:
7676

7777
- Billing model (pay‑as‑you‑go vs. provisioned throughput)
7878
- Deployment option (Standard, Serverless API, Managed Compute)
3.45 KB
Loading

0 commit comments

Comments
 (0)