Skip to content

Commit 87bb855

Browse files
authored
Merge pull request #5022 from aahill/removal
removing code sections
2 parents 1928a69 + e69bc58 commit 87bb855

File tree

3 files changed

+25
-21
lines changed

3 files changed

+25
-21
lines changed

articles/ai-services/agents/how-to/tools/bing-custom-search-samples.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: 'How to use the Custom Bing Search with Azure AI Agent Service tool'
2+
title: 'How to use the Custom Bing Search with Azure AI Foundry Agent Service tool'
33
titleSuffix: Azure OpenAI
4-
description: Find samples to ground Azure AI Agents using Custom Bing Search results.
4+
description: Find samples to ground Azure AI Foundry Agents using Custom Bing Search results.
55
services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
@@ -35,6 +35,7 @@ zone_pivot_groups: selection-bing-custom-grounding
3535

3636
:::zone-end
3737

38+
<!--
3839
::: zone pivot="python"
3940
4041
## Create a project client
@@ -131,6 +132,8 @@ if response_message:
131132
132133
133134
:::zone-end
135+
-->
136+
134137
<!--
135138
::: zone pivot="csharp"
136139
@@ -378,7 +381,9 @@ Create a run and observe that the model uses the Grounding with Bing Custom Sear
378381
::: zone pivot="rest"
379382

380383
>[!IMPORTANT]
381-
> 1. This REST API allows developers to invoke the Grounding with Bing Custom Search tool through the Azure AI Foundry Agent Service. It does not send calls to the Grounding with Bing Custom Search API directly.
384+
> * This REST API allows developers to invoke the Grounding with Bing Custom Search tool through the Azure AI Foundry Agent Service. It does not send calls to the Grounding with Bing Custom Search API directly.
385+
> * The following samples are applicable if you are using **Azure AI Foundry Project** resource with Microsoft Fabric tool through REST API call
386+
> * Your connection ID should be in this format: `/subscriptions/<sub-id>/resourceGroups/<your-rg-name>/providers/Microsoft.CognitiveServices/accounts/<your-ai-services-name>/projects/<your-project-name>/connections/<your-bing-connection-name>`
382387
383388
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api#api-call-information) to set the right values for the environment variables `AGENT_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
384389

@@ -402,12 +407,12 @@ curl --request POST \
402407
"bing_custom_search": {
403408
"search_configurations": [
404409
{
405-
"connection_id": <your_custom_search_connecion_id>,
410+
"connection_id": /subscriptions/<sub-id>/resourceGroups/<your-rg-name>/providers/Microsoft.CognitiveServices/accounts/<your-ai-services-name>/projects/<your-project-name>/connections/<your-fabric-connection-name>,
406411
"instance_name": <your_custom_search_configuration_name>,
407412
"count": 7,
408413
"market": "en-US",
409414
"set_lang": "en",
410-
"freshness": "7d",
415+
"freshness": "day",
411416
}
412417
]
413418
}

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

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'How to use the data agents in Microsoft Fabric with Azure AI Foundry Agent Service'
33
titleSuffix: Azure AI Foundry
4-
description: Learn how to perform data analytics in Azure AI Agents using Microsoft Fabric data agent.
4+
description: Learn how to perform data analytics in Azure AI Foundry Agents using Microsoft Fabric data agent.
55
services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
@@ -14,15 +14,15 @@ zone_pivot_groups: selection-fabric-data-agent
1414

1515
# Use the Microsoft Fabric data agent (preview)
1616

17-
Integrate your Azure AI Agent with the [**Microsoft Fabric data agent**](https://go.microsoft.com/fwlink/?linkid=2312815) to unlock powerful data analysis capabilities. The Fabric data agent transforms enterprise data into conversational Q&A systems, allowing users to interact with the data through chat and uncover data-driven and actionable insights.
17+
Integrate your Azure AI Foundry Agent with the [**Microsoft Fabric data agent**](https://go.microsoft.com/fwlink/?linkid=2312815) to unlock powerful data analysis capabilities. The Fabric data agent transforms enterprise data into conversational Q&A systems, allowing users to interact with the data through chat and uncover data-driven and actionable insights.
1818

19-
You need to first build and publish a Fabric data agent and then connect your Fabric data agent with the published endpoint. When a user sends a query, Azure AI Agent will first determine if the Fabric data agent should be leveraged or not. If so, it will use the end user’s identity to generate queries over data they have access to. Lastly, Azure AI Agent will generate responses based on queries returned from Fabric data agents. With Identity Passthrough (On-Behalf-Of) authorization, this integration simplifies access to enterprise data in Fabric while maintaining robust security, ensuring proper access control and enterprise-grade protection.
19+
You need to first build and publish a Fabric data agent and then connect your Fabric data agent with the published endpoint. When a user sends a query, the will first determine if the Fabric data agent should be leveraged or not. If so, it will use the end user’s identity to generate queries over data they have access to. Lastly, the agent will generate responses based on queries returned from Fabric data agents. With Identity Passthrough (On-Behalf-Of) authorization, this integration simplifies access to enterprise data in Fabric while maintaining robust security, ensuring proper access control and enterprise-grade protection.
2020

2121
## Usage support
2222

2323
|Azure AI foundry support | Python SDK | C# SDK | JavaScript SDK | REST API |Basic agent setup | Standard agent setup |
2424
|---------|---------|---------|---------|---------|---------|---------|
25-
| ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
25+
| ✔️ | | | | ✔️ | ✔️ | ✔️ |
2626

2727
## Prerequisites
2828
* You have created and published a Fabric data agent endpoint
@@ -31,7 +31,7 @@ You need to first build and publish a Fabric data agent and then connect your Fa
3131

3232
* Developers and end users have at least `READ` access to the Fabric data agent and the underlying data sources it connects with.
3333

34-
* Your Fabric Data Agent and Azure AI Agent need to be in the same tenant.
34+
* Your Fabric Data Agent and Azure AI Foundry Agent need to be in the same tenant.
3535

3636
## Setup
3737
> [!NOTE]
@@ -60,7 +60,7 @@ You can add the Microsoft Fabric tool to an agent programatically using the code
6060
:::image type="content" source="../../media/tools/fabric-foundry.png" alt-text="A screenshot showing the fabric connection in the Azure AI Foundry portal." lightbox="../../media/tools/fabric-foundry.png":::
6161

6262
:::zone-end
63-
63+
<!--
6464
:::zone pivot="python"
6565
6666
## Create a project client
@@ -148,6 +148,8 @@ print("Deleted agent")
148148
```
149149
150150
:::zone-end
151+
-->
152+
151153
<!--
152154
:::zone pivot="csharp"
153155
@@ -280,7 +282,7 @@ agentClient.Administration.DeleteAgent(agentId: agent.Id);
280282
281283
```
282284
:::zone-end
283-
-->
285+
284286
:::zone pivot="javascript"
285287
286288
## Create a project client
@@ -363,10 +365,13 @@ for await (const m of messagesIterator) {
363365
}
364366
```
365367
:::zone-end
366-
368+
-->
367369
:::zone pivot="rest"
368370

369-
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api#api-call-information) to set the right values for the environment variables `AGENT_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`.
371+
Follow the [REST API Quickstart](../../quickstart.md?pivots=rest-api#api-call-information) to set the right values for the environment variables `AGENT_TOKEN`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` and `API_VERSION`. For `API_VERSION`, please make sure you are using `2025-05-15-preview`.
372+
> [!IMPORTANT]
373+
> The following samples are applicable if you are using **Azure AI Foundry Project** resource with Microsoft Fabric tool through REST API call
374+
> Your connection id should be in this format: `/subscriptions/<sub-id>/resourceGroups/<your-rg-name>/providers/Microsoft.CognitiveServices/accounts/<your-ai-services-name>/projects/<your-project-name>/connections/<your-fabric-connection-name>`
370375
371376
### Create an agent with the Microsoft Fabric tool enabled
372377

@@ -385,7 +390,7 @@ curl --request POST \
385390
"fabric_dataagent": {
386391
"connections": [
387392
{
388-
"connection_id": "/subscriptions/<your-subscription-id>/resourceGroups/<your-resource-group>/providers/Microsoft.MachineLearningServices/workspaces/<your-project-name>/connections/<your-fabric-connection-name>"
393+
"connection_id": "/subscriptions/<sub-id>/resourceGroups/<your-rg-name>/providers/Microsoft.CognitiveServices/accounts/<your-ai-services-name>/projects/<your-project-name>/connections/<your-fabric-connection-name>"
389394
}
390395
]
391396
}

zone-pivots/zone-pivot-groups.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,10 +1081,6 @@ groups:
10811081
pivots:
10821082
- id: portal
10831083
title: Azure AI Foundry portal
1084-
- id: javascript
1085-
title: JavaScript
1086-
- id: python
1087-
title: Python
10881084
- id: rest
10891085
title: REST API
10901086
- id: selection-file-search-upload
@@ -1147,8 +1143,6 @@ groups:
11471143
pivots:
11481144
- id: portal
11491145
title: Azure AI Foundry portal
1150-
- id: python
1151-
title: Python
11521146
- id: rest
11531147
title: REST API
11541148
- id: selection-openapi-function

0 commit comments

Comments
 (0)