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: articles/ai-foundry/agents/how-to/tools/deep-research-samples.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,18 @@ author: aahill
11
11
ms.author: aahi
12
12
---
13
13
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.
16
16
17
17
## Prerequisites
18
18
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
+
20
26
21
27
> [!NOTE]
22
28
> 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.
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/tools/deep-research.md
+16-18Lines changed: 16 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,25 +16,23 @@ The Deep Research model in the Azure AI Foundry Agent Service enables you to use
16
16
17
17
> [!IMPORTANT]
18
18
> * 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.
20
20
21
21
> [!NOTE]
22
22
> 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.
23
23
24
24
## 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
+
26
27
|Azure AI foundry support | Python SDK | C# SDK | JavaScript SDK | REST API |Basic agent setup | Standard agent setup |
> 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.
32
33
33
34
## Knowledge source support
34
35
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
-
| ✔️ |
38
36
39
37
## How Deep Research works
40
38
@@ -45,14 +43,14 @@ At its core, the Deep Research tool orchestrates a multi-step research pipeline
45
43
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.
46
44
47
45
**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
50
48
- Outputs its thinking as reasoning summary as it analyzes information
51
49
- Delivers a synthesized report at the end of the research task
52
50
53
51
**Deployment information**:
54
52
- Deployment type: Global Standard
55
-
-Regions: West US, Norway East
53
+
-Available regions: West US, Norway East
56
54
- Quotas and limits: Enterprise: 30 K RPS/ 30 M TPM, Default: 3 K RPS/ 3 M TPM
57
55
58
56
### 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
75
73
76
74
## Prerequisites
77
75
- 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)
79
77
-[Grounding with Bing Search tool](./bing-grounding.md) resource for connecting to your AI Foundry project.
80
78
-[Model deployments](../../../model-inference/how-to/create-model-deployments.md) for the following models
81
79
-`o3-deep-research` version `2025-06-26`. This model is available in `West US` and `Norway East`.
82
80
- Any GPT model like the `gpt-4o` for intent clarification.
83
81
84
82
## Setup
85
83
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.
87
85
88
86
:::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":::
:::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":::
93
91
94
92
1. Select the Azure AI Foundry project type:
95
93
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":::
97
95
98
96
1. Update the project name and description:
99
97
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":::
101
99
102
100
1. Connect a Grounding with Bing Search account:
103
101
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":::
105
103
106
104
1. Navigate to the Models + Endpoints tab:
107
105
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":::
109
107
110
108
1. Deploy the deep research model and a GPT model:
111
109
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":::
0 commit comments