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/search-get-started-vector.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
34
34
35
35
+ Optionally, to run the query example that invokes [semantic reranking](semantic-search-overview.md), your search service must be Basic tier or higher, with [semantic ranking enabled](semantic-how-to-enable-disable.md).
36
36
37
-
+ Optionally, an [Azure OpenAI](https://aka.ms/oai/access) resource with a deployment of **text-embedding-ada-002**. The source `.rest` file includes an optional step for generating new text embeddings, but we provide existing embeddings so that you can omit this dependency.
37
+
+ Optionally, an [Azure OpenAI](https://aka.ms/oai/access) resource with a deployment of **text-embedding-ada-002**. The source `.rest` file includes an optional step for generating new text embeddings, but we provide pre-generated embeddings so that you can omit this dependency.
38
38
39
39
## Copy a key and URL
40
40
@@ -54,6 +54,17 @@ A valid API key establishes trust, on a per request basis, between the applicati
54
54
55
55
The index schema is organized around hotels content. Sample data consists of vector and nonvector names and descriptions of seven fictitious hotels. This schema includes configurations for vector indexing and queries, and for semantic ranking.
56
56
57
+
1. Open a new text file in Visual Studio Code.
58
+
59
+
1. Set variables to the search endpoint and the API key you collected earlier.
60
+
61
+
```http
62
+
@baseUrl = PUT-YOUR-SEARCH-SERVICE-URL-HERE
63
+
@apiKey = PUT-YOUR-ADMIN-API-KEY-HERE
64
+
```
65
+
66
+
1. Save the file with a `.rest` file extension.
67
+
57
68
1. Paste in the following example to create the hotels-vector-quickstart index on your search service.
58
69
59
70
```http
@@ -210,7 +221,7 @@ The index schema is organized around hotels content. Sample data consists of vec
210
221
}
211
222
```
212
223
213
-
1. Select **Send request**. You should have an `HTTP/1.1 201 Created` response and the response body should include the JSON representation of the index schema.
224
+
1. Select **Send request**. Recall that you need the REST client to send requests. You should have an `HTTP/1.1 201 Created` response and the response body should include the JSON representation of the index schema.
Copy file name to clipboardExpand all lines: articles/search/service-create-private-endpoint.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,13 +215,13 @@ When the search service endpoint is private, some portal features are disabled.
215
215
216
216
1. Close the remote desktop connection to *myVM*.
217
217
218
-
1. To verify that your service isn't accessible on a public endpoint, open Postman on your local workstation and attempt the first several tasks in the quickstart. If you receive an error that the remote server doesn't exist, you've successfully configured a private endpoint for your search service.
218
+
1. To verify that your service isn't accessible on a public endpoint, open a REST client on your local workstation and attempt the first several tasks in the quickstart. If you receive an error that the remote server doesn't exist, you've successfully configured a private endpoint for your search service.
219
219
220
220
<a id="portal-access-private-search-service"></a>
221
221
222
222
## Use the Azure portal to access a private search service
223
223
224
-
When the search service endpoint is private, some portal features are disabled. You can view and manage service level information, but index, indexer, and skillset information is hidden for security reasons.
224
+
When the search service endpoint is private, some portal features are disabled. You can view and manage service level information, but index, indexer, and skillset information are hidden for security reasons.
225
225
226
226
To work around this restriction, connect to Azure portal from a browser on a virtual machine inside the virtual network. The portal uses the private endpoint on the connection and gives you visibility into content and operations.
0 commit comments