Skip to content

Commit 28a7787

Browse files
committed
fixes
1 parent 64eb666 commit 28a7787

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/search/includes/quickstarts/search-get-started-vector-dotnet.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ This quickstart uses `DefaultAzureCredential`, which simplifies authentication i
4444

4545
This repo has .NET code examples for several articles each in a separate subfolder.
4646

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.
4848

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:
5050

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`.
5252
- `AZURE_SEARCH_INDEX_NAME`: Leave the default value provided in the file or enter your own index name.
5353

5454
## Create the vector index and upload documents
@@ -89,7 +89,7 @@ Key takeaways:
8989

9090
- **Data ingestion**: `UploadDocuments()`, `MergeDocuments()`, `DeleteDocuments()`
9191
- **Search operations**: `Search()`, `Autocomplete()`, `Suggest()`
92-
- **Index management operations**: `CreateOrUpdateIndex`
92+
- **Index management operations**: `CreateOrUpdateIndex()`
9393

9494
- 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.
9595

@@ -303,7 +303,7 @@ The hybrid query with semantic ranking is filtered to show only the hotels withi
303303

304304
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:
305305

306-
:::code language="csharp" source="~/azure-search-dotnet-samples/quickstart-vector-search/vectorsearchexamples/SearchExamples.cs" id="SearchHybridVectoryAndSemantic":::
306+
:::code language="csharp" source="~/azure-search-dotnet-samples/quickstart-vector-search/vectorsearchexamples/SearchExamples.cs" id="SearchHybridVectorAndSemantic":::
307307

308308
1. Run the project again, and the status of each document is printed below it:
309309

0 commit comments

Comments
 (0)