Skip to content

Commit a37506f

Browse files
committed
Refresh articles
1 parent dcba59d commit a37506f

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

articles/search/includes/quickstarts/dotnet-semantic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ ms.service: azure-ai-search
55
ms.custom:
66
- ignite-2023
77
ms.topic: include
8-
ms.date: 01/02/2024
8+
ms.date: 10/22/2024
99
---
1010

11-
Build a console application using the [**Azure.Search.Documents**](/dotnet/api/overview/azure/search.documents-readme) client library to add semantic ranking to an existing search index.
11+
Build a console application by using the [**Azure.Search.Documents**](/dotnet/api/overview/azure/search.documents-readme) client library to add semantic ranking to an existing search index.
1212

13-
Alternatively, you can [download the source code](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/quickstart-semantic-search/SemanticSearchQuickstart) to start with a finished project or follow these steps to create your own.
13+
Alternatively, you can [download the source code](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/main/quickstart-semantic-search/SemanticSearchQuickstart) to start with a finished project.
1414

1515
#### Set up your environment
1616

articles/search/includes/quickstarts/python-semantic.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ ms.service: azure-ai-search
55
ms.custom:
66
- ignite-2023
77
ms.topic: include
8-
ms.date: 03/11/2024
8+
ms.date: 10/22/2024
99
---
1010

11-
Use a Jupyter notebook and the [**azure-search-documents**](/python/api/overview/azure/search-documents-readme) library in the Azure SDK for Python to learn about semantic ranking.
11+
Use a Jupyter notebook and the [**azure-search-documents**](/python/api/overview/azure/search-documents-readme) library in the Azure SDK for Python to learn about semantic ranking.
1212

13-
Alternatively, [download and run a finished notebook](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-Semantic-Search).
13+
Alternatively, you can [download and run a finished notebook](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/Quickstart-Semantic-Search).
1414

1515
#### Set up your environment
1616

@@ -22,7 +22,7 @@ We recommend a virtual environment for this quickstart:
2222

2323
1. Create a new ipynb file.
2424

25-
1. Open the Command Palette (Ctrl+Shift+P).
25+
1. Open the Command Palette by using **Ctrl+Shift+P**.
2626

2727
1. Search for **Python: Create Environment**.
2828

@@ -42,7 +42,7 @@ It can take a minute to set up. If you run into problems, see [Python environmen
4242
! pip install python-dotenv --quiet
4343
```
4444

45-
1. Provide endpoint and API keys:
45+
1. Provide your endpoint and API keys:
4646

4747
```python
4848
search_endpoint: str = "PUT-YOUR-SEARCH-SERVICE-ENDPOINT-HERE"
@@ -240,7 +240,7 @@ for result in results:
240240

241241
For comparison purposes, run text query with BM25 relevance scoring. Full text search is invoked when you provide a query string. The response consists of ranked results, where higher scores are awarded to documents having more instances of matching terms, or more important terms.
242242

243-
In this query for "what hotel has a good restaurant on site", Sublime Cliff Hotel comes out on top because its description includes "site". Terms that occur infrequently raise the search score of the document.
243+
In this query for *what hotel has a good restaurant on site*, Sublime Cliff Hotel comes out on top because its description includes *site*. Terms that occur infrequently raise the search score of the document.
244244

245245
```python
246246
# Run a text query (returns a BM25-scored result set)

0 commit comments

Comments
 (0)