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
> You can use the free service for this tutorial. A free search service limits you to three indexes, three indexers, and three data sources. This tutorial creates one of each. Before starting, make sure you have room on your service to accept the new resources.
@@ -93,7 +93,7 @@ A valid API key establishes trust, on a per request basis, between the applicati
93
93
94
94
## Set up your REST file
95
95
96
-
1. Start Visual Studio Code and open the [skillset-tutorial.rest](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/skillset-tutorial) file. See [Quickstart: Text search using REST](search-get-started-rest.md) if you need help with the REST client.
96
+
1. Start Visual Studio Code and open the [skillset-tutorial.rest](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skillset-tutorial) file. See [Quickstart: Text search using REST](search-get-started-rest.md) if you need help with the REST client.
97
97
98
98
1. Provide values for the variables: search service endpoint, search service admin API key, an index name, a connection string to your Azure Storage account, and the blob container name.
+[Sample debug-sessions.rest file](https://github.com/Azure-Samples/azure-search-postman-samples/blob/main/Debug-sessions/debug-sessions.rest) used to create the enrichment pipeline.
36
+
+[Sample debug-sessions.rest file](https://github.com/Azure-Samples/azure-search-rest-samples/blob/main/Debug-sessions/debug-sessions.rest) used to create the enrichment pipeline.
37
37
38
38
> [!NOTE]
39
39
> This tutorial also uses [Azure AI services](https://azure.microsoft.com/services/cognitive-services/) for language detection, entity recognition, and key phrase extraction. Because the workload is so small, Azure AI services is tapped behind the scenes for free processing for up to 20 transactions. This means that you can complete this exercise without having to create a billable Azure AI services resource.
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-concept-intro.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
@@ -95,7 +95,7 @@ The wizard automates several tasks. Specifically, both shaping and projections (
95
95
96
96
### [**REST**](#tab/kstore-rest)
97
97
98
-
[**Create a knowledge store using REST**](knowledge-store-create-rest.md) is a tutorial that walks you through the objects and requests belonging to this [knowledge store collection](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/knowledge-store).
98
+
[**Create a knowledge store using REST**](knowledge-store-create-rest.md) is a tutorial that walks you through the objects and requests belonging to this [knowledge store collection](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/knowledge-store).
99
99
100
100
REST API version `2020-06-30` and higher can be used to create a knowledge store through additions to a skillset.
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-create-rest.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
@@ -21,7 +21,7 @@ In this article, you use the REST API to ingest, enrich, and explore a set of cu
21
21
To make the initial data set available, the hotel reviews are first imported into Azure Blob Storage. Post-processing, the results are saved as a knowledge store in Azure Table Storage.
22
22
23
23
> [!TIP]
24
-
> This article uses REST for detailed explanations of each step. [Download the REST file](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/knowledge-store) if you want to just run the commands. Alternatively, you can also [create a knowledge store in Azure portal](knowledge-store-create-portal.md).
24
+
> This article uses REST for detailed explanations of each step. [Download the REST file](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/knowledge-store) if you want to just run the commands. Alternatively, you can also [create a knowledge store in Azure portal](knowledge-store-create-portal.md).
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-projection-example-long.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
@@ -27,7 +27,7 @@ Create a blob container in Azure Storage and upload all 14 items.
27
27
28
28
While in Azure Storage, copy a connection string.
29
29
30
-
You can use the [`projections.rest`](https://github.com/Azure-Samples/azure-search-postman-samples/blob/main/projections/) file to run the examples in this article.
30
+
You can use the [`projections.rest`](https://github.com/Azure-Samples/azure-search-rest-samples/blob/main/projections/) file to run the examples in this article.
Copy file name to clipboardExpand all lines: articles/search/samples-rest.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,19 +23,19 @@ You can use any client that supports HTTP calls. [Here's a quickstart](search-ge
23
23
24
24
## Doc samples
25
25
26
-
Code samples from the Azure AI Search team demonstrate features and workflows. Many of these samples are referenced in tutorials, quickstarts, and how-to articles. You can find these samples in [**Azure-Samples/azure-search-postman-samples**](https://github.com/Azure-Samples/azure-search-postman-samples) on GitHub.
26
+
Code samples from the Azure AI Search team demonstrate features and workflows. Many of these samples are referenced in tutorials, quickstarts, and how-to articles. You can find these samples in [**Azure-Samples/azure-search-rest-samples**](https://github.com/Azure-Samples/azure-search-rest-samples) on GitHub.
27
27
28
28
| Samples | Description |
29
29
|---------|---------|
30
-
|[Quickstart](https://github.com/Azure-Samples/azure-search-postman-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. |
31
-
|[Quickstart-vectors](https://github.com/Azure-Samples/azure-search-postman-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. |
32
-
|[Tutorial](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/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.|
33
-
|[Debug-sessions](https://github.com/Azure-Samples/azure-search-postman-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-postman-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
-
|[knowledge-store](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/knowledge-store)| Source code for [Create a knowledge store using REST and Postman](knowledge-store-create-rest.md). This sample explains the necessary steps for populating a knowledge store used for knowledge mining workflows. |
36
-
|[semantic ranker](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/semantic-search)| Source code for [Define projections in a knowledge store](knowledge-store-projections-examples.md). This sample creates a basic search index with a semantic configuration, loads data into the index, and then creates a semantic query.|
37
-
|[projections](https://github.com/Azure-Samples/azure-search-postman-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.|
38
-
|[index-encrypted-blobs](https://github.com/Azure-Samples/azure-search-postman-samples/commit/f5ebb141f1ff98f571ab84ac59dcd6fd06a46718)| Source code for [How to index encrypted blobs using blob indexers and skillsets](search-howto-index-encrypted-blobs.md). This article shows how to index documents in Azure Blob Storage that have been previously encrypted using Azure Key Vault. |
30
+
|[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. |
31
+
|[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. |
32
+
|[Tutorial](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/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.|
33
+
|[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
+
|[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. |
36
+
|[semantic ranker](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/semantic-search)| Source code for [Define projections in a knowledge store](knowledge-store-projections-examples.md). This sample creates a basic search index with a semantic configuration, loads data into the index, and then creates a semantic query.|
37
+
|[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.|
38
+
|[index-encrypted-blobs](https://github.com/Azure-Samples/azure-search-rest-samples/commit/f5ebb141f1ff98f571ab84ac59dcd6fd06a46718)| Source code for [How to index encrypted blobs using blob indexers and skillsets](search-howto-index-encrypted-blobs.md). This article shows how to index documents in Azure Blob Storage that have been previously encrypted using Azure Key Vault. |
39
39
40
40
> [!TIP]
41
41
> Try the [Samples browser](/samples/browse/?expanded=azure&languages=http&products=azure-cognitive-search) to search for Microsoft code samples in GitHub, filtered by product, service, and language.
@@ -46,4 +46,4 @@ The following samples are also published by the Azure AI Search team, but aren't
46
46
47
47
| Samples | Description |
48
48
|---------|-------------|
49
-
|[Query-examples](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/Query-examples)| Postman collections demonstrating the various query techniques, including fuzzy search, RegEx and wildcard search, autocomplete, and so on. |
49
+
|[Query-examples](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Query-examples)| Postman collections demonstrating the various query techniques, including fuzzy search, RegEx and wildcard search, autocomplete, and so on. |
Copy file name to clipboardExpand all lines: articles/search/search-get-started-rest.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
@@ -19,7 +19,7 @@ ms.custom:
19
19
20
20
Learn how to use the [Search REST APIs](/rest/api/searchservice) to create, load, and query a search index in Azure AI Search.
21
21
22
-
[Download a REST sample](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/quickstart) to send the requests in this quickstart, or create requests manually using the instructions in this article.
22
+
[Download a REST sample](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/quickstart) to send the requests in this quickstart, or create requests manually using the instructions in this article.
23
23
24
24
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
Copy file name to clipboardExpand all lines: articles/search/search-get-started-vector.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
@@ -17,7 +17,7 @@ Learn how to use the [Search REST APIs](/rest/api/searchservice) to create, load
17
17
18
18
In Azure AI Search, a [*vector store*](vector-store.md) has an index schema that defines vector and nonvector fields, a vector configuration for algorithms that create the embedding space, and settings on vector field definitions that are used in query requests. The [Create Index](/rest/api/searchservice/indexes/create-or-update) API creates the vector store.
19
19
20
-
[Download a REST sample](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/quickstart-vectors) to send the requests in this quickstart, or create requests manually to adapt the instructions for your own data.
20
+
[Download a REST sample](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/quickstart-vectors) to send the requests in this quickstart, or create requests manually to adapt the instructions for your own data.
21
21
22
22
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
23
23
@@ -240,7 +240,7 @@ Creating and loading the index are separate steps. In Azure AI Search, the index
240
240
The URI is extended to include the `docs` collection and `index` operation.
241
241
242
242
> [!IMPORTANT]
243
-
> The following example isn't runnable code. For readability, we excluded vector values because each one contains 1536 embeddings, which is too long for this article. Copy runnable code from the [sample on GitHub](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/quickstart-vectors) if you want to try this step.
243
+
> The following example isn't runnable code. For readability, we excluded vector values because each one contains 1536 embeddings, which is too long for this article. Copy runnable code from the [sample on GitHub](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/quickstart-vectors) if you want to try this step.
244
244
245
245
```http
246
246
### Upload documents
@@ -399,7 +399,7 @@ The vector queries in this section are based on two strings:
399
399
The vector query string is semantically similar to the search string, but includes terms that don't exist in the search index. If you do a keyword search for "classic lodging near running trails, eateries, retail", results are zero. We use this example to show how you can get relevant results even if there are no matching terms.
400
400
401
401
> [!IMPORTANT]
402
-
> The following examples aren't runnable code. For readability, we excluded vector values because each array contains 1536 embeddings, which is too long for this article. Copy runnable code from the [sample on GitHub](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/quickstart-vectors) if you want to try these queries.
402
+
> The following examples aren't runnable code. For readability, we excluded vector values because each array contains 1536 embeddings, which is too long for this article. Copy runnable code from the [sample on GitHub](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/quickstart-vectors) if you want to try these queries.
0 commit comments