Skip to content

Commit cfcffe0

Browse files
committed
updates
1 parent 4967d1a commit cfcffe0

10 files changed

+28
-24
lines changed

articles/ai-foundry/agents/how-to/tools/deep-research-samples.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ author: aahill
1111
ms.author: aahi
1212
---
1313

14-
# How to use Deep Research
15-
Use this article to find step-by-step instructions and code samples for the Deep Research tool.
14+
# How to use the Deep Research tool
15+
Use this article to find code samples for the Deep Research tool.
1616

1717
## Prerequisites
1818

19-
* The requirements in the [Deep Research overview](./deep-research.md)
19+
* The requirements in the [Deep Research overview](./deep-research.md).
20+
* The Deep Research tool requires the latest prerelease versions of the `azure-ai-projects` library. You can install it with the following command:
21+
22+
```console
23+
pip install --pre azure-ai-projects
24+
```
25+
2026

2127
> [!NOTE]
2228
> Limitation: The Deep Research tool is currently recommended only in nonstreaming scenarios. Using it with streaming can work, but it might occasionally time out and is therefore not recommended.

articles/ai-foundry/agents/how-to/tools/deep-research.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,23 @@ The Deep Research model in the Azure AI Foundry Agent Service enables you to use
1616

1717
> [!IMPORTANT]
1818
> * The Deep Research tool uses **Grounding with Bing Search**. Be sure to read and understand all stipulations of its use, including potential [costs](https://www.microsoft.com/bing/apis/grounding-pricing) that can be incurred, the [terms of use](https://www.microsoft.com/bing/apis/grounding-legal), and [use and display requirements](./bing-grounding.md#how-to-display-grounding-with-bing-search-results). See the [Grounding with Bing Search](./bing-grounding.md) documentation for more information.
19-
> * The Deep Research tool uses the Azure OpenAI `o3-deep-research` model. This model is not available in Azure OpenAi service.
19+
> * The Deep Research tool uses the Azure OpenAI `o3-deep-research` model. This model is not available in the Azure OpenAI service.
2020
2121
> [!NOTE]
2222
> When using Grounding with Bing Search, only the Bing search query, tool parameters, and your resource key are sent to Bing, and no end user-specific information is included. Your resource key is sent to Bing solely for billing and rate limiting purposes.
2323
2424
## Usage support
25-
The deep research tool is a **code-only release** and available for use via the Agents Python SDK once you complete the AI Foundry project setup described in the following sections.
25+
The deep research tool is a **code-only release** and available for use using the Agents Python SDK once you complete the AI Foundry project setup described in the following sections.
26+
2627
|Azure AI foundry support | Python SDK | C# SDK | JavaScript SDK | REST API |Basic agent setup | Standard agent setup |
2728
|---------|---------|---------|---------|---------|---------|---------|
2829
| | ✔️ | | | | ✔️ | ✔️ |
2930

3031
> [!NOTE]
31-
> Once the agent is running via code, some elements of the agent and thread runs may show up in the Foundry user interface.
32+
> Once the agent is running, some elements of the agent and thread runs can show up in the Foundry user interface.
3233
3334
## Knowledge source support
3435
The deep research tool is tightly integrated with Grounding with Bing Search and only supports web-based research.
35-
|Grounding with Bing Search|
36-
|---------|
37-
| ✔️ |
3836

3937
## How Deep Research works
4038

@@ -45,14 +43,14 @@ At its core, the Deep Research tool orchestrates a multi-step research pipeline
4543
The Deep research tool uses the `o3-deep-research` model for its research tasks. It is a fine-tuned version of the `o3` model designed to perform automated detailed analysis of knowledge sources and create detailed research reports.
4644

4745
**Key features**:
48-
- Handles text, images and PDFs as part of its research tasks
49-
- 200K context length, 100K completion tokens, and May 31, 2024 knowledge cutoff
46+
- Handles text, images, and PDFs as part of its research tasks
47+
- 200-K context length, 100K completion tokens, and May 31, 2024 knowledge cutoff
5048
- Outputs its thinking as reasoning summary as it analyzes information
5149
- Delivers a synthesized report at the end of the research task
5250

5351
**Deployment information**:
5452
- Deployment type: Global Standard
55-
- Regions: West US, Norway East
53+
- Available regions: West US, Norway East
5654
- Quotas and limits: Enterprise: 30 K RPS/ 30 M TPM, Default: 3 K RPS/ 3 M TPM
5755

5856
### GPT model deployment for clarifying intent
@@ -75,42 +73,42 @@ The output is a structured report that documents not only the answer, but also t
7573

7674
## Prerequisites
7775
- If you already have access to the `o3` model no request is required for the deep research model. Otherwise, fill out the [request form](https://aka.ms/OAI/deepresearchaccess).
78-
- An Azure subscription with the ability to create resources [Set up your environment](../../articles/ai-foundry/agents/environment-setup.md)
76+
- An Azure subscription with the ability to create resources [Set up your environment](../../environment-setup.md)
7977
- [Grounding with Bing Search tool](./bing-grounding.md) resource for connecting to your AI Foundry project.
8078
- [Model deployments](../../../model-inference/how-to/create-model-deployments.md) for the following models
8179
- `o3-deep-research` version `2025-06-26`. This model is available in `West US` and `Norway East`.
8280
- Any GPT model like the `gpt-4o` for intent clarification.
8381

8482
## Setup
8583

86-
To use the Deep Research tool, you need to create the Ai Foundry type project, add your Grounding with Bing Search resource as a new connection, deploy the deep research model, and deploy the GPT model.
84+
To use the Deep Research tool, you need to create the AI Foundry type project, add your Grounding with Bing Search resource as a new connection, deploy the deep research model, and deploy the GPT model.
8785

8886
:::image type="content" source="../../media/tools/deep-research/setup-deep-research-tool.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/setup-deep-research-tool.png":::
8987

9088
1. Start here: [AI Foundry portal](https://ai.azure.com/?cid=learnDocs):
9189

92-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step1.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step1.png":::
90+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-1.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-1.png":::
9391

9492
1. Select the Azure AI Foundry project type:
9593

96-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step2.PNG" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step2.PNG":::
94+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-2.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-2.PNG":::
9795

9896
1. Update the project name and description:
9997

100-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step3.PNG" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step3.PNG":::
98+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-3.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-3.png":::
10199

102100
1. Connect a Grounding with Bing Search account:
103101

104-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step4.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step4.png":::
102+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-4.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-4.png":::
105103

106104
1. Navigate to the Models + Endpoints tab:
107105

108-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step5.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step5.png":::
106+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-5.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-5.png":::
109107

110108
1. Deploy the deep research model and a GPT model:
111109

112-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step6.PNG" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step6.PNG":::
113-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step7.PNG" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step7.PNG":::
110+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-6.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-6.png":::
111+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-7.png" alt-text="Steps to set up the deep research tool." lightbox="../../media/tools/deep-research/deep-research-tool-step-7.png":::
114112

115113
## Next steps
116114

articles/ai-foundry/agents/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ items:
4949
displayName: bing, grounding with bing
5050
- name: How to use Grounding with Bing Search
5151
href: how-to/tools/bing-code-samples.md
52-
- name: Use Grounding with Bing Custom Search
52+
- name: Use Grounding with Bing Custom Search
5353
items:
5454
- name: Overview
5555
href: how-to/tools/bing-custom-search.md
5656
displayName: bing, grounding with bing custom search
57-
- name: How to use Grounding with Bing Custom Search
58-
href: how-to/tools/bing-custom-search-samples.md
57+
- name: How to use Grounding with Bing Custom Search
58+
href: how-to/tools/bing-custom-search-samples.md
5959
- name: File search
6060
items:
6161
- name: Overview

0 commit comments

Comments
 (0)