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/includes/quickstarts/search-get-started-vector-dotnet.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,11 +44,11 @@ This quickstart uses `DefaultAzureCredential`, which simplifies authentication i
44
44
45
45
This repo has .NET code examples for several articles each in a separate subfolder.
46
46
47
-
1. Open the subfolder `quickstart-Vector-Search` in Visual Studio Code.
47
+
1. Open the subfolder `quickstart-Vector-Search` in Visual Studio Code, or double click the `.sln` file to opn the solution in Visual Studio.
48
48
49
-
1.In Visual Studio Code, open the `appsettings.json` files in the `VectorSearchExamples` and `VectorSearchCreateIndexUploadDocs` folders. Update the following values:
49
+
1.Open the `appsettings.json` files in the `VectorSearchExamples` and `VectorSearchCreatePopulateIndex` folders. Update the following values:
50
50
51
-
-`AZURE_SEARCH_ENDPOINT`: You can find the url in the [Azure portal](https://portal.azure.com). Go to your Azure AI Search service, on the **Overview** page, look for the URL field. An example endpoint might look like `https://mydemo.search.windows.net`.
51
+
-`AZURE_SEARCH_ENDPOINT`: Find the url of your Azure AI Search service in the [Azure portal](https://portal.azure.com). On the **Overview** page of your search resource, look for the URL field. An example endpoint might look like `https://mydemo.search.windows.net`.
52
52
-`AZURE_SEARCH_INDEX_NAME`: Leave the default value provided in the file or enter your own index name.
- Vector fields contain floating point values. The dimensions attribute has a minimum of 2 and a maximum of 4096 floating point values each. This size of embeddings generated by the Azure OpenAI **text-embedding-3-small** model for this quickstart is 1536.
95
95
@@ -303,7 +303,7 @@ The hybrid query with semantic ranking is filtered to show only the hotels withi
303
303
304
304
1. In the `Program.cs` file of the `VectorSearchExamples` folder, uncomment the method call `SearchExamples.SearchHybridVectoryAndSemantic(searchClient, vectorizedResult);`. This method executes the following search function in the `SearchExamples.cs` class:
0 commit comments