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: agent-framework/integrations/ag-ui/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The Agent Framework AG-UI integration supports all 7 AG-UI protocol features:
48
48
49
49
## Build agent UIs with CopilotKit
50
50
51
-
[CopilotKit](https://copilotkit.ai/) provides rich UI components for building agent user interfaces based on the standard AG-UI protocol. CopilotKit supports streaming chat interfaces, frontend & backend tool calling, human-in-the-loop interactions, generative UI, shared state, and much more. You can see a examples of the various agent UI scenarios that CopilotKit supports in the [AG-UI Dojo](https://dojo.ag-ui.com/microsoft-agent-framework-dotnet) sample application.
51
+
[CopilotKit](https://copilotkit.ai/) provides rich UI components for building agent user interfaces based on the standard AG-UI protocol. CopilotKit supports streaming chat interfaces, frontend & backend tool calling, human-in-the-loop interactions, generative UI, shared state, and much more. You can see a examples of the various agent UI scenarios that CopilotKit supports in the [AG-UI Dojo](https://dojo.ag-ui.com/microsoft-agent-framework-dotnet) sample application.
52
52
53
53
CopilotKit helps you focus on your agent’s capabilities while delivering a polished user experience without reinventing the wheel.
54
54
To learn more about getting started with Microsoft Agent Framework and CopilotKit, see the [Microsoft Agent Framework integration for CopilotKit](https://docs.copilotkit.ai/microsoft-agent-framework) documentation.
@@ -233,7 +233,7 @@ Understanding how Agent Framework concepts map to AG-UI helps you build effectiv
233
233
Install the AG-UI integration package:
234
234
235
235
```bash
236
-
pip install agent-framework-ag-ui
236
+
pip install agent-framework-ag-ui --pre
237
237
```
238
238
239
239
This installs both the core agent framework and AG-UI integration components.
Copy file name to clipboardExpand all lines: agent-framework/migration-guide/from-semantic-kernel/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -321,7 +321,7 @@ from semantic_kernel.agents import ChatCompletionAgent
321
321
### Agent Framework
322
322
323
323
Agent Framework package is installed as `agent-framework` and imported as `agent_framework`.
324
-
Agent Framework is built up differently, it has a core package `agent-framework-core` that contains the core functionality, and then there are multiple packages that rely on that core package, such as `agent-framework-azure-ai`, `agent-framework-mem0`, `agent-framework-copilotstudio`, etc. When you run `pip install agent-framework` it will install the core package and *all* packages, so that you can get started with all the features quickly. When you are ready to reduce the number of packages because you know what you need, you can install only the packages you need, so for instance if you only plan to use Azure AI Foundry and Mem0 you can install only those two packages: `pip install agent-framework-azure-ai agent-framework-mem0`, `agent-framework-core` is a dependency to those two, so will automatically be installed.
324
+
Agent Framework is built up differently, it has a core package `agent-framework-core` that contains the core functionality, and then there are multiple packages that rely on that core package, such as `agent-framework-azure-ai`, `agent-framework-mem0`, `agent-framework-copilotstudio`, etc. When you run `pip install agent-framework --pre` it will install the core package and *all* packages, so that you can get started with all the features quickly. When you are ready to reduce the number of packages because you know what you need, you can install only the packages you need, so for instance if you only plan to use Azure AI Foundry and Mem0 you can install only those two packages: `pip install agent-framework-azure-ai agent-framework-mem0 --pre`, `agent-framework-core` is a dependency to those two, so will automatically be installed.
325
325
326
326
Even though the packages are split up, the imports are all from `agent_framework`, or it's modules. So for instance to import the client for Azure AI Foundry you would do:
Copy file name to clipboardExpand all lines: agent-framework/support/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Support for Agent Framework
3
3
description: Support for Agent Framework
4
4
author: TaoChenOSU
5
-
ms.topic: conceptual
5
+
ms.topic: article
6
6
ms.author: taochen
7
7
ms.date: 10/30/2025
8
8
ms.service: agent-framework
@@ -13,7 +13,7 @@ ms.service: agent-framework
13
13
14
14
| Your preference | What's available |
15
15
|---|---|
16
-
| Read the docs |[This learning site](/agent-framework/overview) is the home of the latest information for developers |
16
+
| Read the docs |[This learning site](/agent-framework/) is the home of the latest information for developers |
17
17
| Visit the repo | Our open-source [GitHub repository](https://github.com/microsoft/agent-framework) is available for perusal and suggestions |
18
18
| Connect with the Agent Framework Team | Visit our [GitHub Discussions](https://github.com/microsoft/agent-framework/discussions) to get supported quickly with our [CoC](https://github.com/microsoft/agent-framework/blob/main/CODE_OF_CONDUCT.md) actively enforced |
19
-
| Office Hours | We will be hosting regular office hours; the calendar invites and cadence are located here: [Community.MD](https://github.com/microsoft/agent-framework/blob/main/COMMUNITY.md)|
19
+
| Office Hours | We will be hosting regular office hours; the calendar invites and cadence are located here: [Community.MD](https://github.com/microsoft/agent-framework/blob/main/COMMUNITY.md)|
Copy file name to clipboardExpand all lines: agent-framework/tutorials/agents/enable-observability.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ For prerequisites, see the [Create and run a simple agent](./run-agent.md) step
143
143
To use Agent Framework with Azure OpenAI, you need to install the following packages. Agent Framework automatically includes all necessary OpenTelemetry dependencies:
144
144
145
145
```bash
146
-
pip install agent-framework
146
+
pip install agent-framework --pre
147
147
```
148
148
149
149
The following OpenTelemetry packages are included by default:
Copy file name to clipboardExpand all lines: agent-framework/tutorials/plugins/use-purview-with-agent-framework-sdk.md
+52-52Lines changed: 52 additions & 52 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Use Microsoft Purview SDK with Agent Framework
3
3
description: Learn how to integrate Microsoft Purview SDK for data security and governance in your Agent Framework project
4
4
zone_pivot_groups: programming-languages
5
5
author: reezaali149
6
-
ms.topic: conceptual
6
+
ms.topic: article
7
7
ms.author: v-reezaali
8
8
ms.date: 10/28/2025
9
9
ms.service: purview
@@ -27,7 +27,7 @@ Before you begin, ensure you have:
27
27
- Microsoft 365 subscription with an E5 license and pay-as-you-go billing setup.
28
28
- For testing, you can use a Microsoft 365 Developer Program tenant. For more information, see [Join the Microsoft 365 Developer Program](https://developer.microsoft.com/en-us/microsoft-365/dev-program).
29
29
- Agent Framework SDK: To install the Agent Framework SDK:
30
-
- Python: Run `pip install agent-framework`.
30
+
- Python: Run `pip install agent-framework --pre`.
31
31
- .NET: Install from NuGet.
32
32
33
33
## How to integrate Microsoft Purview into your agent
@@ -40,34 +40,34 @@ The following code sample demonstrates how to add the Microsoft Purview policy m
40
40
41
41
```csharp
42
42
43
-
usingAzure.AI.OpenAI;
44
-
usingAzure.Core;
45
-
usingAzure.Identity;
46
-
usingMicrosoft.Agents.AI;
47
-
usingMicrosoft.Agents.AI.Purview;
48
-
usingMicrosoft.Extensions.AI;
49
-
usingOpenAI;
43
+
usingAzure.AI.OpenAI;
44
+
usingAzure.Core;
45
+
usingAzure.Identity;
46
+
usingMicrosoft.Agents.AI;
47
+
usingMicrosoft.Agents.AI.Purview;
48
+
usingMicrosoft.Extensions.AI;
49
+
usingOpenAI;
50
50
51
-
stringendpoint=Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT") ??thrownewInvalidOperationException("AZURE_OPENAI_ENDPOINT is not set.");
stringpurviewClientAppId=Environment.GetEnvironmentVariable("PURVIEW_CLIENT_APP_ID") ??thrownewInvalidOperationException("PURVIEW_CLIENT_APP_ID is not set.");
51
+
stringendpoint=Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT") ??thrownewInvalidOperationException("AZURE_OPENAI_ENDPOINT is not set.");
stringpurviewClientAppId=Environment.GetEnvironmentVariable("PURVIEW_CLIENT_APP_ID") ??thrownewInvalidOperationException("PURVIEW_CLIENT_APP_ID is not set.");
Copy file name to clipboardExpand all lines: agent-framework/tutorials/quick-start.md
+14-7Lines changed: 14 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,9 +144,19 @@ Before you begin, ensure you have the following:
144
144
- [Python 3.10 or later](https://www.python.org/downloads/)
145
145
- An [Azure AI](/azure/ai-foundry/) project with a deployed model (for example, `gpt-4o-mini`)
146
146
- [Azure CLI](/cli/azure/install-azure-cli) installed and authenticated (`az login`)
147
+
- Install the Agent Framework Package:
148
+
149
+
```bash
150
+
pip install -U agent-framework --pre
151
+
```
147
152
148
153
> [!NOTE]
149
-
> This demo uses Azure CLI credentials for authentication. Make sure you're logged in with `az login` and have access to the Azure AI project. For more information, see the [Azure CLI documentation](/cli/azure/authenticate-azure-cli-interactively).
154
+
> Installing `agent-framework` will install `agent-framework-core` and all other official packages. If you want to install only the Azure AI package, you can run: `pip install agent-framework-azure-ai --pre`
155
+
> All of the official packages, including `agent-framework-azure-ai` have a dependency on `agent-framework-core`, so in most cases, you wouldn't have to specify that.
156
+
> The full list of official packages can be found in the [Agent Framework GitHub repository](https://github.com/microsoft/agent-framework/blob/main/python/pyproject.toml#L80).
157
+
158
+
> [!NOTE]
159
+
> This sample uses Azure CLI credentials for authentication. Make sure you're logged in with `az login` and have access to the Azure AI project. For more information, see the [Azure CLI documentation](/cli/azure/authenticate-azure-cli-interactively).
150
160
151
161
## Running a Basic Agent Sample
152
162
@@ -156,20 +166,17 @@ Make sure to set the following environment variables:
156
166
-`AZURE_AI_PROJECT_ENDPOINT`: Your Azure AI project endpoint
157
167
-`AZURE_AI_MODEL_DEPLOYMENT_NAME`: The name of your model deployment
158
168
159
-
160
169
### Sample Code
161
170
162
171
```python
163
172
import asyncio
164
-
from agent_framework import ChatAgent
165
-
from agent_framework.azure import AzureAIAgentClient
For more detailed examples and advanced scenarios, see the [Azure AI Agent Examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/README.md).
192
+
For more detailed examples and advanced scenarios, see the [Azure AI Examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/README.md).
0 commit comments