Skip to content

Commit d53ea20

Browse files
committed
removed bing
1 parent 33b1ad4 commit d53ea20

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

articles/search/cognitive-search-custom-skill-python.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: luiscabrer
88
ms.author: luisca
99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 01/14/2020
11+
ms.date: 01/15/2020
1212
---
1313

1414
# Example: Create a custom skill using Python
@@ -19,18 +19,15 @@ The custom skill is simple by design (it concatenates two strings) so that you c
1919

2020
## Prerequisites
2121

22-
+ Review [custom skill interface](cognitive-search-custom-skill-interface.md) for an introduction into the input/output interface that a custom skill should implement.
22+
+ Review the [custom skill interface](cognitive-search-custom-skill-interface.md) for an introduction into the input/output interface that a custom skill should implement.
2323

24-
+ [!INCLUDE [cognitive-services-bing-entity-search-signup-requirements](../../includes/cognitive-services-bing-entity-search-signup-requirements.md)]
25-
26-
+ Set up your environment. We followed [this tutorial end-to-end](https://docs.microsoft.com/azure/python/tutorial-vs-code-serverless-python-01) to set up serverless Azure Function in Python in Visual Studio Code. This tutorial leads you through installation of the following tools and components:
24+
+ Set up your environment. We followed [this tutorial end-to-end](https://docs.microsoft.com/azure/python/tutorial-vs-code-serverless-python-01) to set up serverless Azure Function using Visual Studio Code and Python extensions. The tutorial leads you through installation of the following tools and components:
2725

2826
+ [Python 3.75](https://www.python.org/downloads/release/python-375/)
2927
+ [Visual Studio Code](https://code.visualstudio.com/)
3028
+ [Python extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
3129
+ [Azure Functions Core Tools](https://docs.microsoft.com/azure/azure-functions/functions-run-local#v2)
3230
+ [Azure Functions extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions)
33-
3431

3532
## Create an Azure Function
3633

@@ -239,7 +236,7 @@ concatenate the Title and the Author of the document into a single field which w
239236
"[... your existing skills remain here]",
240237
{
241238
"@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
242-
"description": "Our new Bing entity search custom skill",
239+
"description": "Our new search custom skill",
243240
"uri": "https://[your-function-url-here]",
244241
"context": "/document/merged_content/organizations/*",
245242
"inputs": [

0 commit comments

Comments
 (0)