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: Quickstart/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,22 +3,22 @@ page_type: sample
3
3
languages:
4
4
- python
5
5
- rest
6
-
name: Azure Search Quickstart in Python
6
+
name: Azure Cognitive Search Quickstart in Python
7
7
products:
8
8
- azure
9
-
- azure-search
9
+
- cognitive-search
10
10
description: |
11
-
Learn basic steps for creating, loading, and querying an Azure Search index using REST APIs and a Jupyter Python3 notebook.
11
+
Learn basic steps for creating, loading, and querying a search index using REST APIs and a Jupyter Python3 notebook.
12
12
urlFragment: python-sample-quickstart
13
13
---
14
14
15
-
# Quickstart sample for Azure Search using Python
15
+
# Quickstart sample for Azure Cognitive Search using Python
16
16
17
17

18
18
19
-
Demonstrates connecting to Azure Search, creating and loading an index consisting of fictitious hotel data, and running queries. A Jupyter Python Notebook is used to run this code. Calls to Azure Search are through the REST APIs.
19
+
Demonstrates connecting to Azure Cognitive Search, creating and loading an index consisting of fictitious hotel data, and running queries. A Jupyter Python Notebook is used to run this code. Calls to Azure Cognitive Search are through the REST APIs.
20
20
21
-
This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and query an Azure Search index using a Jupyter Python notebook](https://docs.microsoft.com/azure/search/search-get-started-python)
21
+
This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and query a search index using a Jupyter Python notebook](https://docs.microsoft.com/azure/search/search-get-started-python)
22
22
23
23
## Contents
24
24
@@ -33,7 +33,7 @@ This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and que
33
33
## Prerequisites
34
34
35
35
-[Anaconda 3.x](https://www.anaconda.com/distribution/#download-section) providing Python 3.x and Jupyter Notebooks
# Python sample repository for Azure Cognitive Search
9
2
10
-
# Python sample repository for Azure Search
3
+
This repository contains Python sample code used in Azure Cognitive Search quickstarts, tutorials, and examples. You can use the shared (free) Azure Cognitive Search service to run any sample in this repository. Samples are in individual folders in this repository.
11
4
12
-
This repository contains Python sample code used in Azure Search quickstarts, tutorials, and examples. You can use the shared (free) Azure Search service to run any sample in this repository. Samples are in individual folders in this repository.
5
+
## Quickstart - Azure Cognitive Search
13
6
14
-
## Quickstart - Azure Search
15
-
16
-
This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and query an Azure Search index using a Jupyter Python notebook](https://docs.microsoft.com/azure/search/search-get-started-python). Use this sample to learn service connections, index creation, data ingestion, and basic queries.
7
+
This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and query an Azure Cognitive Search index using a Jupyter Python notebook](https://docs.microsoft.com/azure/search/search-get-started-python). Use this sample to learn service connections, index creation, data ingestion, and basic queries.
17
8
18
9
## Tutorial - Add AI enrichments to an indexing pipeline
19
10
20
-
This sample is also a Jupyter Python3 .ipynb file. It's used in the [Python Tutorial: Call Cognitive Services APIs in an Azure Search indexing pipeline](https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob-python). This sample demonstrates cognitive search functionality, adding AI enrichments from Cognitive Services to extract, detect, and analyze information from image files or large unstructured document files.
11
+
This sample is also a Jupyter Python3 .ipynb file. It's used in the [Python Tutorial: Call Cognitive Services APIs in an Azure Cognitive Search indexing pipeline](https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob-python). This sample demonstrates cognitive search functionality, adding AI enrichments from Cognitive Services to extract, detect, and analyze information from image files or large unstructured document files.
Copy file name to clipboardExpand all lines: Tutorial-AI-Enrichment/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,18 +5,18 @@ languages:
5
5
- rest
6
6
products:
7
7
- azure
8
-
- azure-search
9
-
name: Build a cognitive search AI-enriched pipeline
8
+
- cognitive-search
9
+
name: Build an AI enrichment pipeline
10
10
description: |
11
-
Demonstrates AI enrichment using Cognitive Services in an Azure Search indexing pipeline. Calls to Azure Search are made using REST APIs in Jupyter Python3 notebook.
11
+
Demonstrates AI enrichment using Cognitive Services in an Azure Cognitive Search indexing pipeline. Calls are made using REST APIs in Jupyter Python3 notebook.
12
12
urlFragment: python-tutorial-cognitive-search
13
13
---
14
14
15
-
# Get started with cognitive search AI enrichment in Azure Search
15
+
# Get started with skillsets and AI enrichment in Azure Cognitive Search
16
16
17
-
Demonstrates AI enrichment by building a cognitive search indexing pipeline that detects and extracts text and text representations of images and scanned documents stored as blobs in Azure Blob storage. This sample leverages cognitive skills from the Azure Cognitive Services API, such as entity recognition and language detection. It uses the REST APIs to make calls to Azure Search, including index definition, data ingestion and AI enrichment, and query execution.
17
+
Demonstrates AI enrichment by building an indexing pipeline that detects and extracts text and text representations of images and scanned documents stored as blobs in Azure Blob storage. This sample leverages cognitive skills from the Cognitive Services APIs, such as entity recognition and language detection. It uses the REST APIs to make calls to Azure Cognitive Search, including index definition, data ingestion and AI enrichment, and query execution.
18
18
19
-
This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cognitive Services APIs in an Azure Search indexing pipeline](https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob-python).
19
+
This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cognitive Services APIs in an enrichment pipeline](https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob-python).
20
20
21
21
## Contents
22
22
@@ -32,8 +32,8 @@ This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cogn
32
32
33
33
-[Anaconda 3.x](https://www.anaconda.com/distribution/#download-section) providing Python 3.x and Jupyter Notebooks
34
34
-[Sample file set (mixed content types)](https://github.com/Azure-Samples/azure-search-sample-data/tree/master/mixedContent)
@@ -43,7 +43,7 @@ This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cogn
43
43
## Running the sample
44
44
1. On the Windows Start menu, select Anaconda3, and then select Jupyter Notebook.
45
45
2. Open the PythonTutorial-AzureSearch-AIEnrichment.ipynb file in Jupyter Notebook.
46
-
3. Replace <YOUR-SERVICE-NAME> and <YOUR-ADMIN-API-KEY> with the service and api-key details of your Azure Search service.
46
+
3. Replace <YOUR-SERVICE-NAME> and <YOUR-ADMIN-API-KEY> with the service and api-key details of your search service.
47
47
4. Replace <YOUR-BLOB-RESOURCE-CONNECTION-STRING> with a connection string to an Azure Blob storage resource that you created, and to which you uploaded [content files](https://github.com/Azure-Samples/azure-search-sample-data/tree/master/mixedContent) of various file types.
0 commit comments