Skip to content

Commit d5e3ff1

Browse files
committed
updates
1 parent 0c67ff5 commit d5e3ff1

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

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

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,24 @@ ms.author: aahi
1313

1414
# How to use the Deep Research tool
1515

16+
> [!NOTE]
17+
> * The Agents service and SDK use the Azure OpenAI `o3-deep-research` model. This model is not accessible from Azure OpenAI Chat Completions and Responses APIs.
18+
> * The `o3-deep-research` model, GPT model deployment, and the AI Foundry project containing them **must all exist exist** in the same region and Azure subscription. Supported regions are **West US** and **Norway East**.
19+
1620
Use this article to learn how to use the Deep Research tool with the Azure AI Projects SDK, including code examples and setup instructions.
1721

1822
## Prerequisites
1923

20-
> [!NOTE]
21-
> * The Agents service and SDK use the Azure OpenAI `o3-deep-research` model. This model is not accessible from Azure OpenAI Chat Completions and Responses APIs.
22-
> * The `o3-deep-research` model and the GPT model deployments should be part of your AI Foundry project resulting in all three resources in the same Azure subscription and same region. Supported regions are **West US** and **Norway East**.
23-
2424
* The requirements in the [Deep Research overview](./deep-research.md).
25-
* The Deep Research tool requires the latest prerelease versions of the `azure-ai-projects` library. You can install it with the following command:
25+
* The Deep Research tool requires the latest prerelease versions of the `azure-ai-projects` library. First we recommend creating a [virtual environment](https://docs.python.org/3/library/venv.html) to work in:
26+
27+
```console
28+
python -m venv env
29+
# after creating the virtual environment, activate it with:
30+
.\env\Scripts\activate
31+
```
32+
33+
You can install the package with the following command:
2634

2735
```console
2836
pip install --pre azure-ai-projects

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

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

1313
# Deep Research tool (preview)
1414

15+
> [!NOTE]
16+
> * The Agents service and SDK use the Azure OpenAI `o3-deep-research` model. This model is not accessible from Azure OpenAI Chat Completions and Responses APIs.
17+
> * 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.
18+
1519
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.
1620

1721
> [!IMPORTANT]
1822
> 1. Your usage of Grounding with Bing Search can incur costs. See the [pricing page](https://www.microsoft.com/bing/apis/grounding-pricing) for details.
1923
> 1. By creating and using a Grounding with Bing Search resource through code-first experience, such as Azure CLI, or deploying through deployment template, you agree to be bound by and comply with the terms available at https://www.microsoft.com/en-us/bing/apis/grounding-legal, which may be updated from time to time.
2024
> 1. When you use Grounding with Bing Search, your customer data is transferred outside of the Azure compliance boundary to the Grounding with Bing Search service. Grounding with Bing Search is not subject to the same data processing terms (including location of processing) and does not have the same compliance standards and certifications as the Azure AI Foundry Agent Service, as described in the [Grounding with Bing Search Terms of Use](https://www.microsoft.com/en-us/bing/apis/grounding-legal). It is your responsibility to assess whether use of Grounding with Bing Search in your agent meets your needs and requirements.
2125
22-
> [!NOTE]
23-
> * The Agents service and SDK use the Azure OpenAI `o3-deep-research` model. This model is not accessible from Azure OpenAI Chat Completions and Responses APIs.
24-
> * 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.
25-
2626
## Usage support
2727
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.
2828

0 commit comments

Comments
 (0)