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: articles/search/samples-dotnet.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.custom:
10
10
- devx-track-dotnet
11
11
- ignite-2023
12
12
ms.topic: concept-article
13
-
ms.date: 03/10/2025
13
+
ms.date: 05/29/2025
14
14
---
15
15
16
16
# C# samples for Azure AI Search
@@ -51,7 +51,8 @@ Code samples from the Azure AI Search team demonstrate features and workflows. A
51
51
| Code sample | Related article | Purpose |
52
52
|-------------|------------------|---------|
53
53
|[create-mvc-app](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/create-mvc-app)|[Tutorial: Add search to an ASP.NET Core (MVC) app](tutorial-csharp-create-mvc-app.md)| While most samples are console applications, this MVC sample uses a web page to front the sample Hotels index, demonstrating basic search, pagination, and other server-side behaviors.|
54
-
|[quickstart](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/quickstart/v11)|[Quickstart: Full text search using the Azure SDKs](search-get-started-text.md)| Covers the basic workflow for creating, loading, and querying a search index in C# using sample data. |
54
+
|[quickstart](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/quickstart/v11)|[Quickstart: Full-text search using the Azure SDKs](search-get-started-text.md)| Covers the basic workflow for creating, loading, and querying a search index in C# using sample data. |
55
+
|[quickstart-agentic-retrieval](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/quickstart-agentic-retrieval)|[Quickstart: Run agentic retrieval in Azure AI Search](search-get-started-agentic-retrieval.md)| Creates an LLM-powered knowledge agent that retrieves and synthesizes information from your search index. |
55
56
|[quickstart-semantic-search](https://github.com/Azure-Samples/azure-search-dotnet-samples/blob/main/quickstart-semantic-search/)|[Quickstart: Semantic ranking using the Azure SDKs](search-get-started-semantic.md)| Shows the index schema and query request for invoking semantic ranker. |
56
57
|[search-website](https://github.com/Azure-Samples/azure-search-static-web-app)|[Tutorial: Add search to web apps](tutorial-csharp-overview.md)| Demonstrates an end-to-end search app that includes bulk upload using the push APIs and a rich client for hosting the app and handling search requests.|
57
58
|[tutorial-ai-enrichment](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/tutorial-ai-enrichment)|[Tutorial: AI-generated searchable content from Azure blobs](cognitive-search-tutorial-blob-dotnet.md)| Shows how to configure an indexer and skillset. |
Copy file name to clipboardExpand all lines: articles/search/samples-python.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.custom:
11
11
- devx-track-python
12
12
- ignite-2023
13
13
ms.topic: concept-article
14
-
ms.date: 03/10/2025
14
+
ms.date: 05/29/2025
15
15
---
16
16
17
17
# Python samples for Azure AI Search
@@ -36,12 +36,14 @@ Code samples from the Azure AI Search team demonstrate features and workflows. M
36
36
37
37
| Samples | Article |
38
38
|---------|---------|
39
-
|[Tutorial-RAG](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Tutorial-RAG)| Source code for the Python portion of [How to build a RAG solution using Azure AI Search](tutorial-rag-build-solution.md).|
40
-
|[Quickstart](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart)| Source code for the Python portion of [Quickstart: Full text search using the Azure SDKs](search-get-started-text.md). This article covers the basic workflow for creating, loading, and querying a search index using sample data. |
39
+
|[Quickstart](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart)| Source code for the Python portion of [Quickstart: Full-text search using the Azure SDKs](search-get-started-text.md). This sample covers the basic workflow for creating, loading, and querying a search index using sample data. |
40
+
|[Quickstart-Agentic-Retrieval](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-Agentic-Retrieval)| Source code for the Python portion of [Quickstart: Run agentic retrieval in Azure AI Search](search-get-started-agentic-retrieval.md). |
41
41
|[Quickstart-RAG](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-RAG)| Source code for the Python portion of [Quickstart: Generative search (RAG) with grounding data from Azure AI Search](search-get-started-rag.md). |
42
-
|[Quickstart-Semantic-Search](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-Semantic-Search)| Source code for the Python portion of [Quickstart: Semantic ranking using the Azure SDKs](search-get-started-semantic.md). It shows the index schema and query request for invoking semantic ranker. |
43
-
|[bulk-insert](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/bulk-insert)| Source code for the Python example of how to [use the push APIs](search-how-to-load-search-index.md) to upload and index documents. |
42
+
|[Quickstart-Semantic-Search](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-Semantic-Search)| Source code for the Python portion of [Quickstart: Semantic ranking using the Azure SDKs](search-get-started-semantic.md). This sample shows the index schema and query request for invoking semantic ranker. |
43
+
|[Tutorial-RAG](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Tutorial-RAG)| Source code for the Python portion of [How to build a RAG solution using Azure AI Search](tutorial-rag-build-solution.md).|
44
+
|[agentic-retrieval-pipeline-example](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/agentic-retrieval-pipeline-example)| Source code for the Python portion of [Build an agent-to-agent retrieval solution using Azure AI Search](search-agentic-retrieval-how-to-pipeline.md). Unlike the [quickstart](search-get-started-agentic-retrieval.md), this sample incorporates Azure AI Foundry Agent Service for data retrieval and orchestration. |
44
45
|[azure-function-search](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/azure-function-search)| Source code for the Python example of an Azure function that sends queries to a search service. You can substitute this Python version of the `api` code used in the [Add search to web sites](tutorial-csharp-overview.md) C# sample. |
46
+
|[bulk-insert](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/bulk-insert)| Source code for the Python example of how to [use the push APIs](search-how-to-load-search-index.md) to upload and index documents. |
Copy file name to clipboardExpand all lines: articles/search/samples-rest.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.service: azure-ai-search
9
9
ms.custom:
10
10
- ignite-2023
11
11
ms.topic: concept-article
12
-
ms.date: 03/10/2025
12
+
ms.date: 05/29/2025
13
13
---
14
14
15
15
# REST samples for Azure AI Search
@@ -28,10 +28,11 @@ Code samples from the Azure AI Search team demonstrate features and workflows. M
28
28
|---------|---------|
29
29
|[quickstart](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Quickstart)| Source code for [Quickstart: Text search using REST](search-get-started-rest.md). This sample covers the basic workflow for creating, loading, and querying a search index using sample data. |
30
30
|[quickstart-vectors](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Quickstart-vectors)| Source code for [Quickstart: Vector search using REST APIs](search-get-started-vector.md). This sample covers the basic workflow for indexing and querying vector data. |
31
+
|[quickstart-agentic-retrieval](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/agentic-retrieval)| Source code for the REST portion of [Quickstart: Run agentic retrieval in Azure AI Search](search-get-started-agentic-retrieval.md). This sample shows you how to create an LLM-powered knowledge agent that retrieves and synthesizes information from your search index. |
31
32
|[skillset-tutorial](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skillset-tutorial)| Source code for [Tutorial: Use REST and AI to generate searchable content from Azure blobs](cognitive-search-tutorial-blob.md). This sample shows you how to create a skillset that iterates over Azure blobs to extract information and infer structure.|
32
33
|[skill examples](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skill-examples)| Skillset examples in indexer pipelines that include indexes and indexers so that you can follow field mappings, output field mappings, and source paths. |
33
34
|[debug-sessions](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Debug-sessions)| Source code for [Tutorial: Diagnose, repair, and commit changes to your skillset](cognitive-search-tutorial-debug-sessions.md). This sample shows you how to use a skillset debug session in the Azure portal. REST is used to create the objects used during debug.|
34
-
|[custom-analyzers](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/custom-analyzers)| Source code for [Tutorial: Create a custom analyzer for phone numbers](tutorial-create-custom-analyzer.md). This sample explains how to use analyzers to preserve patterns and special characters in searchable content.|
35
+
|[custom-analyzers](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/custom-analyzers)| Source code for [Tutorial: Create a custom analyzer for phone numbers](tutorial-create-custom-analyzer.md). This sample explains how to use analyzers to preserve patterns and special characters in searchable content.|
35
36
|[index-json-blobs](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/index-json-blobs)| Create an indexer, data source, and index for nested JSON within a JSON array. This sample demonstrates the jsonArray parsing model and documentRoot parameters. |
36
37
|[knowledge-store](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/knowledge-store)| Source code for [Create a knowledge store using REST](knowledge-store-create-rest.md). This sample explains the necessary steps for populating a knowledge store used for knowledge mining workflows. |
37
38
|[projections](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/projections)| Source code for [Define projections in a knowledge store](knowledge-store-projections-examples.md). This sample explains how to specify the physical data structures in a knowledge store.|
0 commit comments