Skip to content

Commit fc3acc0

Browse files
authored
Merge pull request #26 from HeidiSteen/heidist-master
Updated product name reference
2 parents b51c2d5 + 35985d0 commit fc3acc0

File tree

5 files changed

+25
-34
lines changed

5 files changed

+25
-34
lines changed

Quickstart/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to the Python quickstart for Azure Search
1+
# Contributing to Azure Cognitive Search samples
22

33
This project welcomes contributions and suggestions. Most contributions require you to agree to a
44
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us

Quickstart/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ page_type: sample
33
languages:
44
- python
55
- rest
6-
name: Azure Search Quickstart in Python
6+
name: Azure Cognitive Search Quickstart in Python
77
products:
88
- azure
9-
- azure-search
9+
- cognitive-search
1010
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.
1212
urlFragment: python-sample-quickstart
1313
---
1414

15-
# Quickstart sample for Azure Search using Python
15+
# Quickstart sample for Azure Cognitive Search using Python
1616

1717
![Flask sample MIT license badge](https://img.shields.io/badge/license-MIT-green.svg)
1818

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

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)
2222

2323
## Contents
2424

@@ -33,7 +33,7 @@ This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and que
3333
## Prerequisites
3434

3535
- [Anaconda 3.x](https://www.anaconda.com/distribution/#download-section) providing Python 3.x and Jupyter Notebooks
36-
- [Azure Search service](https://docs.microsoft.com/azure/search/search-create-service-portal)
36+
- [Azure Cognitive Search service](https://docs.microsoft.com/azure/search/search-create-service-portal)
3737

3838
## Setup
3939

@@ -43,9 +43,9 @@ This sample is a Jupyter Python3 .ipynb file used in [Quickstart: Create and que
4343
## Running the sample
4444
1. On the Windows Start menu, select Anaconda3, and then select Jupyter Notebook.
4545
1. Open the azure-search-quickstart.ipynb file in Jupyter Notebook
46-
1. Replace <YOUR-SERVICE-NAME> and <YOUR-ADMIN-API-KEY> with the service and api-key details of your Azure Search service
46+
1. Replace <YOUR-SERVICE-NAME> and <YOUR-ADMIN-API-KEY> with the service and api-key details of your search service
4747
1. Run each step individually
4848

4949
## Next steps
5050

51-
You can learn more about Azure Search on the [official documentation site](https://docs.microsoft.com/azure/search).
51+
You can learn more about Azure Cognitive Search on the [official documentation site](https://docs.microsoft.com/azure/search).

README.md

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
1-
---
2-
languages:
3-
- python
4-
- rest
5-
products:
6-
- azure
7-
- azure-search
8-
---
1+
# Python sample repository for Azure Cognitive Search
92

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

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
136

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

189
## Tutorial - Add AI enrichments to an indexing pipeline
1910

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.

Tutorial-AI-Enrichment/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to the Python tutorial for AI enrichment in Azure Searh.
1+
# Contributing to Azure Cognitive Search samples
22

33
This project welcomes contributions and suggestions. Most contributions require you to agree to a
44
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us

Tutorial-AI-Enrichment/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ languages:
55
- rest
66
products:
77
- azure
8-
- azure-search
9-
name: Build a cognitive search AI-enriched pipeline
8+
- cognitive-search
9+
name: Build an AI enrichment pipeline
1010
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.
1212
urlFragment: python-tutorial-cognitive-search
1313
---
1414

15-
# Get started with cognitive search AI enrichment in Azure Search
15+
# Get started with skillsets and AI enrichment in Azure Cognitive Search
1616

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

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).
2020

2121
## Contents
2222

@@ -32,8 +32,8 @@ This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cogn
3232

3333
- [Anaconda 3.x](https://www.anaconda.com/distribution/#download-section) providing Python 3.x and Jupyter Notebooks
3434
- [Sample file set (mixed content types)](https://github.com/Azure-Samples/azure-search-sample-data/tree/master/mixedContent)
35-
- [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account)
36-
- [Azure Search service](https://docs.microsoft.com/en-us/azure/search/search-create-service-portal)
35+
- [Azure Storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account)
36+
- [Azure Cognitive Search service](https://docs.microsoft.com/en-us/azure/search/search-create-service-portal)
3737

3838
## Setup
3939

@@ -43,7 +43,7 @@ This sample is a Jupyter Python3 .ipynb file used in [Python Tutorial: Call Cogn
4343
## Running the sample
4444
1. On the Windows Start menu, select Anaconda3, and then select Jupyter Notebook.
4545
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.
4747
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.
4848
5. Run each step individually.
4949

0 commit comments

Comments
 (0)