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/knowledge-store-create-rest.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,9 @@ To make the initial data set available, the hotel reviews are first imported int
31
31
32
32
+ Azure Storage. [Create an account](../storage/common/storage-account-create.md) or [find an existing one](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/). The account type must be **StorageV2 (general purpose V2)**.
33
33
34
-
## Upload data to Azure Storage and get a connection string
34
+
The skillset in this examples uses Azure AI Services for enrichments. Because the workload is so small, Azure AI services is tapped behind the scenes to provide free processing for up to 20 transactions daily. A small workload means that you can skip creating or attaching an Azure AI multi-service resource.
35
35
36
-
<!-- This step uses Azure AI Search, Azure Blob Storage, and [Azure AI services](https://azure.microsoft.com/services/cognitive-services/) for the AI. Because the workload is so small, Azure AI services is tapped behind the scenes to provide free processing for up to 20 transactions daily. A small workload means that you can skip creating or attaching an Azure AI multi-service resource. -->
36
+
## Upload data to Azure Storage and get a connection string
37
37
38
38
1.[Download HotelReviews_Free.csv](https://github.com/Azure-Samples/azure-search-sample-data/blob/main/hotelreviews/HotelReviews_data.csv). This CSV contains 19 pieces of customer feedback about a single hotel (originates from Kaggle.com).
39
39
@@ -52,7 +52,7 @@ To make the initial data set available, the hotel reviews are first imported int
52
52
```
53
53
54
54
> [!NOTE]
55
-
> See [Connect using a managed identity](search-howto-managed-identities-data-sources.md) if you don't want to provide sensitive data on the connection.
55
+
> See [Connect using a managed identity](search-howto-managed-identities-data-sources.md) if you don't want to provide sensitive data on the connection string.
56
56
57
57
## Copy a key and URL
58
58
@@ -150,7 +150,7 @@ A skillset defines enrichments (skills) and your knowledge store. [Create Skills
150
150
151
151
```http
152
152
### Create a skillset
153
-
POST {{baseUrl}}/skillset?api-version=2023-11-01 HTTP/1.1
153
+
POST {{baseUrl}}/skillsets?api-version=2023-11-01 HTTP/1.1
154
154
Content-Type: application/json
155
155
api-key: {{apiKey}}
156
156
@@ -313,11 +313,11 @@ A skillset defines enrichments (skills) and your knowledge store. [Create Skills
313
313
314
314
[Create Indexer](/rest/api/searchservice/create-indexer) creates and runs the indexer. Indexer execution starts by cracking the documents, extracting text and images, and initializing the skillset. The indexer checks for the other objects that you created: the datasource, the index, and the skillset.
315
315
316
-
1. Paste in the following example to create the skillset.
316
+
1. Paste in the following example to create the indexer.
317
317
318
318
```http
319
-
### Create a skillset
320
-
POST {{baseUrl}}/skillset?api-version=2023-11-01 HTTP/1.1
319
+
### Create indexer
320
+
POST {{baseUrl}}/indexers?api-version=2023-11-01 HTTP/1.1
0 commit comments