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
@@ -23,20 +24,6 @@ Use this article to learn how to use the Deep Research tool with the Azure AI Pr
23
24
## Prerequisites
24
25
25
26
* The requirements in the [Deep Research overview](./deep-research.md).
26
-
* 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:
27
-
28
-
```console
29
-
python -m venv env
30
-
# after creating the virtual environment, activate it with:
31
-
.\env\Scripts\activate
32
-
```
33
-
34
-
You can install the package with the following command:
35
-
36
-
```console
37
-
pip install --pre azure-ai-projects
38
-
```
39
-
40
27
* Your Azure AI Foundry Project endpoint.
41
28
42
29
You can find your endpoint in the main project **overview** for your project in the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs), under **Endpoint and keys** > **Libraries** > **Azure AI Foundry**.
@@ -62,6 +49,159 @@ Use this article to learn how to use the Deep Research tool with the Azure AI Pr
62
49
63
50
## Create an agent with the Deep Research tool
64
51
52
+
:::zone pivot="csharp"
53
+
54
+
>[!NOTE]
55
+
> You need version `1.1.0-beta.4` or later of the `Azure.AI.Agents.Persistent` package, and the `Azure.Identity` package.
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:
191
+
192
+
```console
193
+
python -m venv env
194
+
# after creating the virtual environment, activate it with:
195
+
.\env\Scripts\activate
196
+
```
197
+
198
+
You can install the package with the following command:
199
+
200
+
```console
201
+
pip install --pre azure-ai-projects
202
+
```
203
+
204
+
65
205
```python
66
206
import os, time
67
207
from typing import Optional
@@ -198,6 +338,8 @@ with project_client:
198
338
print("Deleted agent")
199
339
```
200
340
341
+
:::zone-end
342
+
201
343
> [!NOTE]
202
344
> 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.
0 commit comments