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: learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/2-generative-ai-models.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Choosing the right model in Foundry starts with understanding **your workload, t
67
67
|**Multimodal**| Phi‑4‑multimodal‑instruct, GPT‑5.x chat multimodal, Mistral‑Large‑3 | Support for images/audio in chat completions|
68
68
69
69
> [!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.
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/3-using-generative-ai-models.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Unlike the user prompt, which is the end-user request or question (example: Wher
14
14
15
15
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.
16
16
17
-

17
+

18
18
19
19
You can take the code as a starting point for creating your own chat client.
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/get-started-with-generative-ai-and-agents/includes/5-using-an-agent.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3

4
4

5
5
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**.
7
7
8
8
The Project API enables you to:
9
9
- Integrate agents into web apps, bots, or backend workflows
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.
56
56
57
57
## Managing costs
58
58
59
-
A Foundry agent itself is free — the real cost comes from what it uses:
59
+
A Foundry agent itself is free; the real cost comes from what it uses, mainly:
60
60
- The models it calls
61
61
- The tools it invokes
62
62
- The data services it connects to
@@ -72,7 +72,7 @@ A Foundry agent itself is free — the real cost comes from what it uses:
0 commit comments