Skip to content

Commit 298a86a

Browse files
Merge pull request #6714 from MicrosoftDocs/main
Auto Publish – main to live - 2025-08-22 05:07 UTC
2 parents 6ccc4b8 + b543836 commit 298a86a

File tree

13 files changed

+110
-148
lines changed

13 files changed

+110
-148
lines changed

articles/ai-foundry/.openpublishing.redirection.ai-studio.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,6 +1228,11 @@
12281228
"redirect_url": "/azure/ai-foundry/",
12291229
"redirect_document_id": false
12301230
},
1231+
{
1232+
"source_path_from_root": "/articles/ai-foundry/agents/concepts/tracing.md",
1233+
"redirect_url": "/azure/ai-foundry/how-to/develop/trace-agents-sdk",
1234+
"redirect_document_id": true
1235+
},
12311236
{
12321237
"source_path_from_root": "/articles/ai-foundry/how-to/online-evaluation.md",
12331238
"redirect_url": "/azure/ai-foundry/how-to/monitor-applications",

articles/ai-foundry/agents/concepts/tracing.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

articles/ai-foundry/agents/how-to/tools/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Tools are optional capabilities you can add to your AI agent for AI models to de
4444

4545
You can add tools at the agent, thread, or run level. By providing tools at a narrower level, the tool resources will **override** tool resources at a broader level. For example, tool resources at the run level override tool resources at thread level. Currently, you can add multiple tools but you can add **one instance of each** of the following tools: File Search, Azure AI Search, Grounding with Bing Search, Grounding with Bing Custom Search, Microsoft Fabric, and other tools under `knowledge` section.
4646

47-
When a user sends a query to the agent, it will create a [thread, run, and message](../../concepts\threads-runs-messages.md). For each run, the AI model decides what tools to invoke based on the user intent and available tool resources. Based on the tool outputs, the AI model might decide to invoke another tool or call the same tool again to get more context. For example, when you use Grounding with Bing Search tool, you might see multiple Bing Search queries when [tracing a thread](../../concepts\tracing.md). This means the AI model actually calls the Grounding with Bing Search tool multiple times with different queries to get more information. If you want to learn more about what tools are called and how the AI model invokes them, check the run step details.
47+
When a user sends a query to the agent, it will create a [thread, run, and message](../../concepts\threads-runs-messages.md). For each run, the AI model decides what tools to invoke based on the user intent and available tool resources. Based on the tool outputs, the AI model might decide to invoke another tool or call the same tool again to get more context. For example, when you use Grounding with Bing Search tool, you might see multiple Bing Search queries when [tracing a thread](../../../how-to/develop/trace-agents-sdk.md). This means the AI model actually calls the Grounding with Bing Search tool multiple times with different queries to get more information. If you want to learn more about what tools are called and how the AI model invokes them, check the run step details.
4848

4949
There are various ways to influence how your AI agent invokes tools:
5050

articles/ai-foundry/agents/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Azure AI Foundry Agent Service provides a production-ready foundation for deploy
104104
| **3. Tool orchestration** | Server-side execution and retry of [tool calls](how-to\tools\overview.md) with structured logging. No manual orchestration required. |
105105
| **4. Trust and safety** | Integrated [content filters](../openai/how-to/content-filters.md) help prevent misuse and mitigate prompt injection risks (XPIA). all outputs are policy-governed. |
106106
| **5. Enterprise integration** | Bring your own [storage](./how-to/use-your-own-resources.md#use-an-existing-azure-cosmos-db-for-nosql-account-for-thread-storage), [Azure AI Search index](./how-to/use-your-own-resources.md#use-an-existing-azure-ai-search-resource), and [virtual network](how-to\virtual-networks.md) to meet compliance needs. |
107-
| **6. Observability and debugging** | Threads, tool invocations, and message traces are [fully traceable](concepts\tracing.md); [Application Insights integration](./how-to/metrics.md) for telemetry |
107+
| **6. Observability and debugging** | Threads, tool invocations, and message traces are [fully traceable](../how-to/develop/trace-agents-sdk.md); [Application Insights integration](./how-to/metrics.md) for telemetry |
108108
| **7. Identity and policy control** | Built on Microsoft Entra with full support for RBAC, audit logs, and enterprise conditional access. |
109109

110110
## Get started with Foundry Agent Service

articles/ai-foundry/agents/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ items:
146146
- name: Service monitoring
147147
href: how-to/metrics.md
148148
- name: Trace and observe agents
149-
href: concepts/tracing.md
149+
href: ../how-to/develop/trace-agents-sdk.md
150150
- name: Responsible AI
151151
items:
152152
- name: Transparency note

articles/ai-foundry/agents/whats-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The [AI Foundry Visual Studio Code extension](../../ai-foundry/how-to/develop/vs
6666

6767
#### Trace agents
6868

69-
Debug and monitor your agents by [tracing agent threads](concepts\tracing.md) to clearly see the inputs and outputs of each primitive involved in a particular agent run, in the order in which they were invoked.
69+
Debug and monitor your agents by [tracing agent threads](../how-to/develop/trace-agents-sdk.md) to clearly see the inputs and outputs of each primitive involved in a particular agent run, in the order in which they were invoked.
7070

7171
#### Trigger agents using Azure Logic Apps
7272

@@ -122,7 +122,7 @@ Azure AI Service is now available in preview. The service builds off of the Assi
122122
* [.NET](quickstart.md?pivots=programming-language-csharp)
123123
* [The Azure Python SDK](quickstart.md?pivots=programming-language-python-azure)
124124
* [The OpenAI Python SDK](quickstart.md?pivots=programming-language-python-openai)
125-
* Debugging support using [tracing with Application Insights](concepts\tracing.md)
125+
* Debugging support using [tracing with Application Insights](../how-to/develop/trace-agents-sdk.md)
126126

127127
## Next steps
128128

articles/ai-foundry/concepts/models-inference-examples.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To perform inferencing with Cohere rerank models, you're required to use Cohere'
6464

6565
*Queries*, not to be confused with a user's query, is a pricing meter that refers to the cost associated with the tokens used as input for inference of a Cohere Rerank model. Cohere counts a single search unit as a query with up to 100 documents to be ranked. Documents longer than 500 tokens (for Cohere-rerank-v3.5) or longer than 4096 tokens (for Cohere-rerank-v3-English and Cohere-rerank-v3-multilingual) when including the length of the search query are split up into multiple chunks, where each chunk counts as a single document.
6666

67-
See the [Cohere model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=cohere).
67+
See the [Cohere model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=Cohere).
6868

6969
## Core42
7070

@@ -119,7 +119,7 @@ The following table provides links to examples of how to use Meta Llama models.
119119

120120
## Microsoft
121121

122-
Microsoft models include various model groups such as MAI models, Phi models, healthcare AI models, and more. To see all the available Microsoft models, view [the Microsoft model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=phi).
122+
Microsoft models include various model groups such as MAI models, Phi models, healthcare AI models, and more. To see all the available Microsoft models, view [the Microsoft model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=Microsoft).
123123

124124
The following table provides links to examples of how to use Microsoft models.
125125

@@ -133,7 +133,7 @@ The following table provides links to examples of how to use Microsoft models.
133133
| Llama-Index | Python | [Link](https://aka.ms/azureai/llamaindex) |
134134

135135

136-
See [the Microsoft model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=phi).
136+
See [the Microsoft model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=Microsoft).
137137

138138

139139
## Mistral AI
@@ -199,7 +199,7 @@ There are four pricing meters that determine the price you pay. These meters are
199199
| paygo-finetuned-model-inference-input-tokens | Costs associated with the tokens used as input for inference when *finetune_steps* > 0 |
200200
| paygo-finetuned-model-inference-output-tokens | Costs associated with the tokens used as output for inference when *finetune_steps* > 0 |
201201

202-
See the [Nixtla model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=nixtla).
202+
See the [Nixtla model collection in Azure AI Foundry portal](https://ai.azure.com/explore/models?&selectedCollection=Nixtla).
203203

204204
## Stability AI
205205

0 commit comments

Comments
 (0)