Skip to content

Commit 693dc57

Browse files
authored
Merge pull request #5530 from aahill/agents-updates
updating logic apps and sharepoint articles
2 parents 3aabdd5 + 901ac9e commit 693dc57

File tree

5 files changed

+43
-1
lines changed

5 files changed

+43
-1
lines changed

articles/ai-services/agents/how-to/tools/logic-apps.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,38 @@ This article demonstrates how to integrate Logic Apps with Azure AI Agents to ex
2828
- `SUBSCRIPTION_ID`: Your Azure subscription ID.
2929
- `resource_group_name`: The name of your resource group.
3030

31+
:::zone pivot="portal"
32+
33+
34+
## Add a Logic Apps workflow to an agent using the Azure AI Foundry portal
35+
36+
1. Go to the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs). In the **Agents** screen for your agent, scroll down the **Setup** pane on the right to **Actions**. Then select **Add**.
37+
38+
:::image type="content" source="../../media/tools/action-tools.png" alt-text="A screenshot showing the available tool categories in the Azure AI Foundry portal." lightbox="../../media/tools/action-tools.png":::
39+
40+
1. Select **Azure Logic Apps** and follow the prompts to add the tool.
41+
42+
:::image type="content" source="../../media/tools/action-tools-list.png" alt-text="A screenshot showing the available action tools in the Azure AI Foundry portal." lightbox="../../media/tools/action-tools-list.png":::
43+
44+
You can choose to add Microsoft authored workflows, or add your own.
45+
46+
> [!NOTE]
47+
> For your logic apps to appear in the Azure AI Foundry portal, they must:
48+
> * Be in the same subscription and resource group.
49+
> * Follow a request trigger with a description, and end with a response action.
50+
51+
:::image type="content" source="../../media/tools/add-logic-apps.png" alt-text="A screenshot showing the screen to add Logic Apps." lightbox="../../media/tools/add-logic-apps.png":::
52+
53+
54+
:::zone-end
55+
56+
:::zone pivot="python"
57+
3158
## Create a project client
3259

3360
Create a client object to connect to your AI project and other resources.
3461

62+
3563
```python
3664
import os
3765
from azure.ai.projects import AIProjectClient
@@ -141,6 +169,8 @@ project_client.agents.delete_agent(agent.id)
141169
print("Deleted agent")
142170
```
143171

172+
:::zone-end
173+
144174
## Next steps
145175

146176
[See the full sample for Logic Apps integration.](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_tools/sample_agents_logic_apps.py)

articles/ai-services/agents/how-to/tools/sharepoint.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,7 @@ Integrate your agents with the **Microsoft SharePoint** to chat with your privat
4848

4949
## Next steps
5050

51-
[See the full sample for SharePoint.](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-projects/samples/agents/sample_agents_sharepoint.py)
51+
* [How to use the SharePoint tool](./sharepoint-samples.md)
52+
* Reference articles for content retrieval used by the tool:
53+
* [Overview of the Microsoft 365 Copilot Retrieval API](/microsoft-365-copilot/extensibility/api-reference/retrieval-api-overview).
54+
* [Semantic indexing for Microsoft 365 Copilot](/microsoftsearch/semantic-index-for-copilot)
24 KB
Loading
123 KB
Loading

zone-pivots/zone-pivot-groups.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,15 @@ groups:
10571057
- id: rest-api
10581058
title: REST API
10591059
# owner: aahi
1060+
- id: selection-logic-apps
1061+
title: Selections
1062+
prompt: What would you like to see?
1063+
pivots:
1064+
- id: portal
1065+
title: Azure AI Foundry portal
1066+
- id: python
1067+
title: Python
1068+
# owner: aahi
10601069
- id: selection-code-interpreter
10611070
title: Selections
10621071
prompt: What would you like to see?

0 commit comments

Comments
 (0)