Skip to content

Commit e0aac65

Browse files
authored
Merge pull request #5305 from MicrosoftDocs/main
5/30/2025 AM Publish
2 parents 5c6e63e + 540af14 commit e0aac65

32 files changed

+175
-79
lines changed

articles/ai-foundry/how-to/develop/trace-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ For more information on how to send Azure AI Inference traces to Azure Monitor a
242242
## Related content
243243

244244
- [Python samples](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-inference/samples/sample_chat_completions_with_tracing.py) containing fully runnable Python code for tracing using synchronous and asynchronous clients.
245-
- [Sample Agents with Console tracing](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_functions_with_console_tracing.py)
246-
- [Sample Agents with Azure Monitor](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_basics_with_azure_monitor_tracing.py)
245+
- [Sample Agents with Console tracing](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_basics_async_with_console_tracing.py)
246+
- [Sample Agents with Azure Monitor](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_basics_with_azure_monitor_tracing.py)
247247
- [JavaScript samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/src) containing fully runnable JavaScript code for tracing using synchronous and asynchronous clients.
248248
- [C# Samples](https://github.com/Azure/azure-sdk-for-net/blob/Azure.AI.Inference_1.0.0-beta.2/sdk/ai/Azure.AI.Inference/samples/Sample8_ChatCompletionsWithOpenTelemetry.md) containing fully runnable C# code for doing inference using synchronous and asynchronous methods.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ Once you have the packages installed, you can use one the following Python sampl
8181
8282

8383
**Using Azure Monitor**
84-
* [Basic agent example](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_basics_with_azure_monitor_tracing.py)
85-
* [Agent example with function calling](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_functions_with_azure_monitor_tracing.py)
86-
* [Example with a stream event handler](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_stream_eventhandler_with_azure_monitor_tracing.py)
84+
* [Basic agent example](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_basics_with_azure_monitor_tracing.py)
85+
* [Agent example with tools](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_toolset_with_azure_monitor_tracing.py)
86+
* [Example with a stream event handler](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_stream_eventhandler_with_azure_monitor_tracing.py)
8787

8888
**Using console tracing**
89-
* [Basic agent example](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_basics_with_console_tracing.py)
90-
* [Agent example with function calling](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_functions_with_console_tracing.py)
91-
* [Example with a stream event handler](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_stream_eventhandler_with_console_tracing.py)
89+
* [Basic agent example](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_basics_with_console_tracing.py)
90+
* [Agent example with tools](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_toolset_with_console_tracing.py)
91+
* [Example with a stream event handler](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_telemetry/sample_agents_stream_eventhandler_with_console_tracing.py)

articles/ai-services/agents/how-to/tools/code-interpreter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: azure-ai-agents
1717
Code Interpreter allows the agents to write and run Python code in a sandboxed execution environment. With Code Interpreter enabled, your agent can run code iteratively to solve more challenging code, math, and data analysis problems. When your Agent writes code that fails to run, it can iterate on this code by modifying and running different code until the code execution succeeds.
1818

1919
> [!IMPORTANT]
20-
> Code Interpreter has [additional charges](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/) beyond the token based fees for Azure OpenAI usage. If your Agent calls Code Interpreter simultaneously in two different threads, two code interpreter sessions are created. Each session is active by default for one hour.
20+
> Code Interpreter has [additional charges](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/) beyond the token based fees for Azure OpenAI usage. If your Agent calls Code Interpreter simultaneously in two different threads, two code interpreter sessions are created. Each session is active by default for 1 hour with an idle timeout of 30 minutes.
2121
2222
### Supported models
2323

articles/ai-services/agents/how-to/tools/fabric.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You need to first build and publish a Fabric data agent and then connect your Fa
3636
## Setup
3737
> [!NOTE]
3838
> * The model you selected in Azure AI Foundry Agent setup is only used for agent orchestration and response generation. It doesn't impact which model Fabric data agent uses for NL2SQL operation.
39-
> * To help your model invoke your Microsoft Fabric tool in the expected way, please make sure you update agent instructions with descriptions of your Fabric data agent and what data it has access to. An example is "for customer and product sales related data, please use the Fabric tool"
39+
> * To help your model invoke your Microsoft Fabric tool in the expected way, please make sure you update agent instructions with descriptions of your Fabric data agent and what data it has access to. An example is "for customer and product sales related data, please use the Fabric tool". We recommend using a smaller AI model such as `gpt-4o-mini`. You can also use `tool_choice` parameter in SDK or API to force Fabric tool to be invoked at each run.
4040
4141
1. Create an Azure AI Foundry Agent by following the steps in the [quickstart](../../quickstart.md).
4242

articles/ai-services/agents/how-to/triggers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ To check if a specific connector has a trigger capability, view its documentatio
2626
## Prerequisites
2727

2828
* [An existing agent](../quickstart.md)
29-
* Supported Logic Apps regions: `west us 2`, `west central us`, `east asia`, and `southeast asia`.
3029

3130
## Set up
3231

articles/ai-services/content-understanding/concepts/analyzer-templates.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.date: 05/19/2025
1414

1515
Content Understanding analyzer templates give you a head start in developing your Content Understanding solution by allowing you to build your analyzer without creating schemas from scratch.
1616
There are analyzer templates specific to common scenarios in each modality, such as call center audio analytics and advertising analysis for videos. Templates are also fully customizable, allowing you to adjust any
17-
fields in the schemas to better fit your needs. Learn more about the analyzer templates offered for each modality by viewing the following tabs.
17+
fields in the schemas to better fit your needs. Learn more about the analyzer templates offered for each modality by viewing the following tabs. Templates are only offered for Content Understanding Standard mode.
1818

1919
## Modality templates
2020

@@ -27,7 +27,7 @@ The following analyzer templates are available for use in the [Azure AI Foundry
2727
|Document analysis |Analyze documents to extract text, layout, structured fields, and more.|
2828
|Invoice analysis |Analyze invoice as prebuilt template and extract structured fields and tables.|
2929

30-
:::image type="content" source="../media/analyzer-template/scenario-template-document.png" alt-text="Screenshot of document analyzer template.":::
30+
:::image type="content" source="../media/analyzer-template/document-analyzers.png" alt-text="Screenshot of document analyzer template.":::
3131

3232
# [Image](#tab/image)
3333

@@ -37,28 +37,29 @@ The following analyzer templates are available for use in the [Azure AI Foundry
3737
|Retail inventory management |Retail inventory management for monitoring of products on shelves.|
3838
|Defect detection |Identify potential defects in provided images of metal plates.|
3939

40-
:::image type="content" source="../media/analyzer-template/image-templates.png" alt-text="Screenshot of image analyzer template.":::
40+
:::image type="content" source="../media/analyzer-template/image-analyzers.png" alt-text="Screenshot of image analyzer template.":::
4141

4242
# [Audio](#tab/audio)
4343

4444
|Template| Description|
4545
| ----|----|----|
46-
|Audio transcription |Transcribe audio recordings.|
46+
|Speech transcription analysis |Analyze audio recordings to extract transcripts and structured fields.|
4747
|Conversation summarization |Transcribe conversations and extract summaries.|
4848
|Post call analytics |Analyze call center conversations to extract transcripts, summaries, sentiment, and more.|
4949

5050

51-
:::image type="content" source="../media/analyzer-template/audio-templates.png" alt-text="Screenshot of audio analyzer template.":::
51+
:::image type="content" source="../media/analyzer-template/audio-analyzers.png" alt-text="Screenshot of audio analyzer template.":::
5252

5353
# [Video](#tab/video)
5454

5555
|Template| Description|
5656
| ----|----|----|
57-
|Video shot analysis |Analyze videos to extract transcript and structured fields for each shot.|
57+
|Video analysis |Analyze videos to extract the transcript and structured fields for the whole video.|
58+
|Video segment analysis |Analyze videos to extract the transcript and structured fields for each segment in the video.|
5859
|Media asset management |Extract structured information from marketing videos, news content, broadcast media, television episodes, and film archives.|
5960
|Advertising |Advertising analysis and moderation.|
6061

6162

62-
:::image type="content" source="../media/analyzer-template/video-templates.png" alt-text="Screenshot of video analyzer template.":::
63+
:::image type="content" source="../media/analyzer-template/video-analyzers.png" alt-text="Screenshot of video analyzer template.":::
6364

6465
---
1.72 MB
Loading
1.5 MB
Loading
1.8 MB
Loading
1.69 MB
Loading

0 commit comments

Comments
 (0)