Skip to content

Commit 2aa85ee

Browse files
committed
cela updates
1 parent 5a1f191 commit 2aa85ee

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.topic: how-to
1212

1313
# Deep Research tool (preview)
1414

15-
The Deep Research model in the Azure AI Foundry Agent Service enables you to use web-based research capability, and integrate it with your systems.
15+
The Deep Research tool in the Azure AI Foundry Agent Service enables you to integrate a web-based research capability into your systems. The Deep Research capability is a specialized AI capability designed to perform in-depth, multi-step research using data from the public web.
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.
@@ -22,25 +22,25 @@ The Deep Research model in the Azure AI Foundry Agent Service enables you to use
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 using 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 Azure AI Foundry project setup described in the following sections.
2626

2727
|Azure AI foundry portal | Python SDK | C# SDK | JavaScript SDK | REST API |Basic agent setup | Standard agent setup |
2828
|---------|---------|---------|---------|---------|---------|---------|
2929
| | ✔️ | | | | ✔️ | ✔️ |
3030

3131
> [!NOTE]
32-
> Once the agent is running, some elements of the agent and thread runs can 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 Azure AI Foundry user interface.
3333
3434
## Knowledge source support
3535
The deep research tool is tightly integrated with Grounding with Bing Search and only supports web-based research.
3636

3737
## How Deep Research works
3838

39-
At its core, the Deep Research tool orchestrates a multi-step research pipeline that’s tightly integrated with Grounding with Bing Search and the Azure OpenAI deep research model.
39+
At its core, the Deep Research tool orchestrates a multi-step research pipeline uses the Azure OpenAI's `o3-deep-research` model together with Grounding with Bing Search to autonomously search for and read information from multiple online sources appropriate to the user prompt. This enables the Deep Research tool to generate thorough, documented, and cited reports on complex topics.
4040

4141
### Deep research model deployment
4242

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.
43+
The Deep Research tool uses the Azure OpenAI `o3-deep-research` model for its research tasks. The model was fine-tuned on the Azure OpenAI `o3` reasoning model.
4444

4545
**Key features**:
4646
- Handles text, images, and PDFs as part of its research tasks.
@@ -55,33 +55,33 @@ The Deep research tool uses the `o3-deep-research` model for its research tasks.
5555

5656
### GPT model deployment for clarifying intent
5757

58-
The deep research tool uses a second model deployment to clarify the question, gather additional context if needed, and precisely scope the research task. This ensures the agent’s output is both relevant and actionable, and that every search is optimized for your business scenario.
58+
The Deep Research tool uses a second model deployment to clarify the question contained in the user prompt, gather additional context if needed, and precisely scope the research task. This helps make the output of an agent using the Deep Research tool more relevant and actionable, and can help optimize the search for your business scenario.
5959

60-
This second model can be any of the GPT-series models including GPT-4o and GPT-4.1.
60+
This second model is selected by the customer during configuration of the Deep Research tool and can be any of the GPT-series models including GPT-4o and GPT-4.1.
6161

6262
### Grounding with Bing Search
6363

64-
Once the task is scoped, the agent invokes the [Grounding with Bing Search](./bing-grounding.md) tool to gather a curated set of high-quality, recent web data. This ensures the research model is working from a foundation of authoritative, up-to-date sources.
64+
Once the task is scoped, the agent using the Deep Research tool invokes the [Grounding with Bing Search](./bing-grounding.md) tool to gather a curated set of recent web data designed to provide the research model with a foundation of authoritative, high quality, up-to-date sources.
6565

6666
### Task execution
6767

68-
The Deep Research model then starts the research task execution. This involves thinking reasoning, analyzing, and synthesizing information across all discovered sources. Unlike simple summarization, it reasons step-by-step, pivots as it encounters new insights, and composes a comprehensive answer that's sensitive to nuance, ambiguity, and emerging patterns in the data.
68+
The Deep Research model then executes the research task. This involves reasoning, analyzing, and synthesizing information across all discovered sources. Unlike simple summarization, it reasons step-by-step, pivots as it encounters new insights, and composes a comprehensive answer that's sensitive to nuance, ambiguity, and emerging patterns in the data.
6969

7070
### Transparency, safety, and compliance
7171

72-
The output is a structured report that documents not only the answer, but also the model's reasoning path, source citations, and any clarifications requested during the session. This makes every answer fully auditable.
72+
The output is a structured report that documents not only the comprehensive answer, but also provides source citations and describes the model's reasoning path, including any clarifications requested during the session. This makes every answer fully auditable. See the [Transparency note for Azure OpenAI](/azure/ai-foundry/responsible-ai/openai/transparency-note) for more information.
7373

7474
## Prerequisites
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).
75+
- If you already have access to the Azure OpenAI `o3` model, no request is required to access the `o3-deep-research` model. Otherwise, fill out the [request form](https://aka.ms/OAI/deepresearchaccess).
7676
- An Azure subscription with the ability to create resources [Set up your environment](../../environment-setup.md)
77-
- [Grounding with Bing Search tool](./bing-grounding.md) resource for connecting to your AI Foundry project.
77+
- [Grounding with Bing Search tool](./bing-grounding.md) resource for connecting to your Azure AI Foundry project.
7878
- [Model deployments](../../../model-inference/how-to/create-model-deployments.md) for the following models
7979
- `o3-deep-research` version `2025-06-26`. This model is available in `West US` and `Norway East`.
80-
- Any GPT model like the `gpt-4o` for intent clarification.
80+
- Any Azure OpenAI GPT model like `gpt-4o` for intent clarification.
8181

8282
## Setup
8383

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.
84+
To use the Deep Research tool, you need to create the Azure AI Foundry type project, add your Grounding with Bing Search resource as a new connection, deploy the `o3-deep-research-model`, and deploy the selected Azure OpenAI GPT model.
8585

8686
:::image type="content" source="../../media/tools/deep-research/setup-deep-research-tool.png" alt-text="A diagram of the steps to set up the deep research tool." lightbox="../../media/tools/deep-research/setup-deep-research-tool.png":::
8787

@@ -105,13 +105,13 @@ To use the Deep Research tool, you need to create the AI Foundry type project, a
105105

106106
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-5.png" alt-text="A screenshot of the models and endpoints page." lightbox="../../media/tools/deep-research/deep-research-tool-step-5.png":::
107107

108-
1. Deploy the deep research model.
108+
1. Deploy the `o3-deep-research-model` model.
109109

110110
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-6.png" alt-text="A screenshot of a deep research model deployment." lightbox="../../media/tools/deep-research/deep-research-tool-step-6.png":::
111111

112-
1. Deploy a GPT model. For example gpt-4o.
112+
1. Deploy a Azure OpenAI GPT model. For example `gpt-4o`.
113113

114-
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-7.png" alt-text="A screenshot of a GPT 4o model deployment." lightbox="../../media/tools/deep-research/deep-research-tool-step-7.png":::
114+
:::image type="content" source="../../media/tools/deep-research/deep-research-tool-step-7.png" alt-text="A screenshot of an Azure OpenAI GPT 4o model deployment." lightbox="../../media/tools/deep-research/deep-research-tool-step-7.png":::
115115

116116
## Next steps
117117

0 commit comments

Comments
 (0)