Skip to content

Commit 441ae71

Browse files
committed
2 parents 606e5ed + 4d6df67 commit 441ae71

4 files changed

Lines changed: 26 additions & 22 deletions

File tree

docs/embedded/development/declarative-agent/sharepoint-embedded-knowledge-source.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ ms.localizationpriority: high
1111
>
1212
> This functionality is currently in preview.
1313
14-
This article configures a SPE container type with the necessary permission for an Azure AI Foundry agent to use it as a knowledge source.
14+
This article helps you configure [Microsoft Foundry Agent Service](/azure/foundry/agents/overview) with a [SharePoint knowledge source (Preview)](/azure/search/agentic-knowledge-source-how-to-sharepoint-remote) configured for SharePoint Embedded (SPE).
1515

1616
## Prerequisites
1717

1818
- You have set up an SPE app with at least one container. To get started, learn more at [SharePoint Embedded Overview](../../overview.md).
19-
- You have at least one Copilot license on your tenant. This requirement is for the preview period only. We will switch to metered billing once we transition out of preview.
19+
- You have at least one Copilot license on your tenant. This requirement is for the preview period only. We will switch to metered billing once we transition out of preview.
2020

21-
## Grant Foundry access to a container type
21+
## Set up the SharePoint knowledge source for SharePoint Embedded
2222

23-
Run the following to grant the necessary application permission using the Microsoft Graph API:
23+
The SharePoint knowledge source must be configured with the `remoteSharePointParameters.containerTypeId` pointing to your application's container type. For more information, see the [SharePoint knowledge source properties](/azure/search/agentic-knowledge-source-how-to-sharepoint-remote#source-specific-properties).
2424

25-
Replace `{fileStorageContainerTypeId}` with your container type ID. The container type's owning application must call this API on a consuming tenant.
25+
## Grant Foundry access to a container type
2626

27-
[Learn more about Container Type Registration API](/graph/api/filestoragecontainertyperegistration-post-applicationpermissiongrants)
27+
You also need to grant Microsoft Foundry the necessary application permission to access your container type. You can do this by updating the container type registration in your consuming tenants as shown below. Replace `{fileStorageContainerTypeId}` with your container type ID. The container type's owning application must call this API on consuming tenants.
2828

2929
```http
30-
PUT https://graph.microsoft.com/beta/storage/fileStorage/containerTypeRegistrations/{fileStorageContainerTypeId}/applicationPermissionGrants/880da380-985e-4198-81b9-e05b1cc53158
30+
PUT /storage/fileStorage/containerTypeRegistrations/{fileStorageContainerTypeId}/applicationPermissionGrants/880da380-985e-4198-81b9-e05b1cc53158
3131
Content-Type: application/json
3232
3333
{
@@ -37,4 +37,4 @@ Content-Type: application/json
3737
```
3838

3939
> [!TIP]
40-
> This may also be done during initial container type registration using the Microsoft Graph endpoint [filestorage-post-containertyperegistrations](/graph/api/filestorage-post-containertyperegistrations).
40+
> This may also be done during initial container type registration using the [Create container type registration](/graph/api/filestorage-post-containertyperegistrations) endpoint.

docs/embedded/development/declarative-agent/spe-da-adv.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
---
22
title: SharePoint Embedded agent Advanced Topics
33
description: Learn how the semantic index powers Retrieval-Augmented Generation (RAG) to provide accurate, context-aware AI responses in SharePoint Embedded agent.
4-
ms.date: 06/10/2025
4+
ms.date: 03/17/2026
55
ms.localizationpriority: high
66
---
77

88
# SharePoint Embedded agent Advanced Topics Overview
99

10+
> [!CAUTION]
11+
> SharePoint Embedded agent has been deprecated in its current form and replaced with [Microsoft Foundry Agent Service](/azure/foundry/agents/overview) with a [SharePoint knowledge source (Preview)](/azure/search/agentic-knowledge-source-how-to-sharepoint-remote) configured for SharePoint Embedded. Learn how to [set up SharePoint Embedded as a knowledge source in Microsoft Foundry](sharepoint-embedded-knowledge-source.md).
12+
13+
This article will remain in place for a limited time for historical reference.
14+
1015
This advanced guide covers how the semantic index powers Retrieval-Augmented Generation (RAG) to provide accurate, context-aware AI responses. We explore how these concepts work together to ensure your agent retrieves relevant information from your data and returns grounded answers.
1116

1217
## Caveats

docs/embedded/development/declarative-agent/spe-da.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
---
2-
title: SharePoint Embedded agent
2+
title: SharePoint Embedded agent (Deprecated)
33
description: Details usage and billing for SharePoint Embedded agents
4-
ms.date: 05/12/2025
4+
ms.date: 03/17/2026
55
ms.localizationpriority: high
66
---
77

88
# Overview
99

10+
> [!CAUTION]
11+
> SharePoint Embedded agent has been deprecated in its current form and replaced with [Microsoft Foundry Agent Service](/azure/foundry/agents/overview) with a [SharePoint knowledge source (Preview)](/azure/search/agentic-knowledge-source-how-to-sharepoint-remote) configured for SharePoint Embedded. Learn how to [set up SharePoint Embedded as a knowledge source in Microsoft Foundry](sharepoint-embedded-knowledge-source.md).
12+
13+
This article will remain in place for a limited time for historical reference.
14+
1015
> [!NOTE]
1116
>
12-
> SharePoint Embedded agent is currently in private preview. Stay tuned for latest API and SDK changes on this page.
17+
> The SharePoint Embedded agent SDK is not suitable for production use cases.
1318
>
1419
> SPE agent consumption-based model will be available in May 2025! Starting May 1st, standard billing model will be available to all private preview customers and this rollout is expected to complete by May 15th. This means that starting May 15th, to use SPE agent within an SPE application, you will need to use standard Container Type. SPE Agent interactions, including those from Microsoft 365 Copilot license users, will be billed to the Azure subscription associated with your Container Type. Learn more about [SharePoint Embedded billing management](/sharepoint/dev/embedded/administration/billing/billingmanagement).
15-
>
16-
> We are actively working on enabling Direct-to-Customer billing model for SPE agent. Stay tuned for more announcements.
1720
18-
SharePoint Embedded agent enables you to add AI capabilities into your application through a simple SDK. This chat control offers the following features:
21+
SharePoint Embedded agent enables you to quickly demo AI capabilities into your application through a simple SDK, though it is not intended for production use. This chat control offers the following features:
1922

2023
- Reason over documents in SharePoint Embedded containers using RAG.
2124
- Developers can configure the application code to limit the search scope to files, folders, and containers.

docs/toc.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -658,14 +658,10 @@
658658
href: /training/modules/sharepoint-embedded-setup
659659
- name: SharePoint Embedded - building applications
660660
href: /training/modules/sharepoint-embedded-create-app
661-
- name: SharePoint Embedded agent ( Private Preview )
661+
- name: SharePoint Embedded agent
662662
items:
663-
- name: SharePoint Embedded agent Overview
664-
href: embedded/development/declarative-agent/spe-da.md
665-
- name: SharePoint Embedded agent Tutorial
666-
href: embedded/development/tutorials/spe-da-vscode.md
667-
- name: SharePoint Embedded agent Advanced Topics
668-
href: embedded/development/declarative-agent/spe-da-adv.md
663+
- name: SharePoint Embedded knowledge source in Microsoft Foundry (Preview)
664+
href: embedded/development/declarative-agent/sharepoint-embedded-knowledge-source.md
669665
- name: Microsoft Teams
670666
items:
671667
- name: Overview

0 commit comments

Comments
 (0)