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
Also rename tsp-location.yaml to tsp-location.yaml.saved since the commit hash there is not from the Main branch, which will fail the release pipeline.
Also replace term "isolation key" with correct term in emitted doc string. I will do a similar TypeSpec change.
Copy file name to clipboardExpand all lines: sdk/ai/azure-ai-projects/README.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,16 @@
3
3
The AI Projects client library is part of the Microsoft Foundry SDK, and provides easy access to
4
4
resources in your [Microsoft Foundry](https://ai.azure.com/) Project. Use it to:
5
5
6
-
***Create and run Agents** using methods on the `.agents` client property. This includes **Hosted Agents** (Preview), which let you run your own containerized agent runtime while using Microsoft Foundry for managed hosting and scaling.
7
-
***Enhance Agents with specialized tools**:
6
+
***Create and run Agents** using methods on the `.agents` client property. This includes **Hosted Agents**, which let you run your own containerized agent runtime while using Microsoft Foundry for managed hosting and scaling.
7
+
***Enhance Agents with specialized tools and toolbox tools** such as:
8
8
* Agent-to-Agent (A2A) (Preview)
9
9
* Azure AI Search
10
10
* Azure Functions
11
11
* Bing Custom Search (Preview)
12
12
* Bing Grounding
13
13
* Browser Automation (Preview)
14
14
* Code Interpreter
15
+
* Computer
15
16
* Computer Use (Preview)
16
17
* Fabric IQ (Preview)
17
18
* File Search
@@ -22,11 +23,13 @@ resources in your [Microsoft Foundry](https://ai.azure.com/) Project. Use it to:
22
23
* Microsoft SharePoint (Preview)
23
24
* Model Context Protocol (MCP)
24
25
* OpenAPI
26
+
* Reminder Tool (Preview)
25
27
* Toolbox Search (Preview)
26
28
* Web Search
27
29
* Web Search (Preview)
28
30
* Work IQ (Preview)
29
31
***Get an OpenAI client** using `.get_openai_client()` method to run Responses, Conversations, Evaluations and Fine-Tuning operations with your Agent.
32
+
***Create and version toolboxes** that bundle collections of tools and skills for your agents, using `.toolboxes` operations.
30
33
***Fine-tune** AI Models on your data.
31
34
***Enumerate AI Models** deployed to your Foundry Project using `.deployments` operations.
32
35
***Enumerate connected Azure resources** in your Foundry project using `.connections` operations.
@@ -39,7 +42,8 @@ resources in your [Microsoft Foundry](https://ai.azure.com/) Project. Use it to:
39
42
***Run Red Team scans (preview)** to identify risks associated with your generative AI application, using `.beta.red_teams` operations.
40
43
***Create and manage routines (preview)** that execute triggered actions based on configured conditions, using `.beta.routines` operations.
41
44
***Manage skills (preview)** as reusable capabilities that can be included in toolboxes and agents, using `.beta.skills` operations.
42
-
***Create and version toolboxes (preview)** that bundle collections of tools and skills for your agents, using `.beta.toolboxes` operations.
45
+
46
+
**Important:** This stable package includes Preview features. Preview features available through stable methods require setting `allow_preview=True` when constructing the client, while Preview features exposed via the .beta sub-clients do not. Preview features may change or be removed in future versions and are not recommended for production use.
43
47
44
48
The client library uses version `v1` of the Microsoft Foundry [data plane REST APIs](https://aka.ms/azsdk/azure-ai-projects-v2/api-reference-v1).
45
49
@@ -74,7 +78,7 @@ To report an issue with the client library, or request additional features, plea
74
78
pip install azure-ai-projects
75
79
```
76
80
77
-
Verify that you have version 2.2.0 or above installed by running:
81
+
Verify that you have version 2.3.0 or above installed by running:
78
82
79
83
```bash
80
84
pip show azure-ai-projects
@@ -167,23 +171,25 @@ The table below lists the operation groups supported by the client library, with
| Connections |[Add a new connection to your project](https://learn.microsoft.com/azure/foundry/how-to/connections-add?tabs=foundry-portal)|`samples/connections/`|
178
+
| Client-side tracing |[Add client-side tracing to Foundry agents](https://learn.microsoft.com/azure/foundry/observability/how-to/trace-agent-client-side?tabs=python)|`samples/telemetry/`|
| Fine-tuning |[When to use fine-tuning](https://learn.microsoft.com/azure/foundry/openai/concepts/fine-tuning-considerations), [Fine-Tuning in AI Foundry (GitHub repo)](https://github.com/microsoft-foundry/fine-tuning)|`samples/finetuning/`|
179
184
| Indexes |[Azure AI Search](https://learn.microsoft.com/azure/search/search-what-is-azure-search)|`samples/indexes/`|
180
-
| Memory stores (preview) ||`samples/memories/`|
185
+
| Memory stores (preview) |[What is memory?](https://learn.microsoft.com/azure/foundry/agents/concepts/what-is-memory?tabs=conversational-agent)|`samples/memories/`|
0 commit comments