Skip to content

Commit 8d56faa

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into natpatch
2 parents 76e611b + e4f4b25 commit 8d56faa

File tree

5 files changed

+23
-14
lines changed

5 files changed

+23
-14
lines changed

articles/cognitive-services/text-analytics/includes/quickstarts/csharp-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: nitinme
66
ms.service: cognitive-services
77
ms.subservice: text-analytics
88
ms.topic: include
9-
ms.date: 02/26/2020
9+
ms.date: 03/12/2020
1010
ms.author: aahi
1111
ms.reviewer: assafi
1212
---

articles/cognitive-services/text-analytics/includes/quickstarts/java-sdk.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ manager: nitinme
66
ms.service: cognitive-services
77
ms.subservice: text-analytics
88
ms.topic: include
9-
ms.date: 02/26/2020
9+
ms.date: 03/12/2020
1010
ms.author: aahi
1111
ms.reviewer: tasharm, assafi, sumeh
1212
---
1313

1414
<a name="HOLTop"></a>
1515

16-
[Reference documentation](https://aka.ms/azsdk-java-textanalytics-ref-docs) | [Library source code](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/textanalytics/azure-ai-textanalytics) | [Package (Maven)](https://oss.sonatype.org/#nexus-search;quick~com.azure) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/textanalytics/azure-ai-textanalytics/src/samples/java/com/azure/ai/textanalytics)
16+
[Reference documentation](https://aka.ms/azsdk-java-textanalytics-ref-docs) | [Library source code](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/textanalytics/azure-ai-textanalytics) | [Package](https://search.maven.org/artifact/com.azure/azure-ai-textanalytics/1.0.0-beta.3/jar) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/textanalytics/azure-ai-textanalytics/src/samples/java/com/azure/ai/textanalytics)
1717

1818
## Prerequisites
1919

@@ -31,7 +31,7 @@ Add the following text analytics dependency to your project. This version of the
3131

3232
```xml
3333
<dependencies>
34-
<dependency>
34+
<dependency>
3535
<groupId>com.azure</groupId>
3636
<artifactId>azure-ai-textanalytics</artifactId>
3737
<version>1.0.0-beta.3</version>
@@ -41,6 +41,9 @@ Add the following text analytics dependency to your project. This version of the
4141

4242
Create a new java file in the following directory: `\src\main\java`.
4343

44+
> [!TIP]
45+
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/java/TextAnalytics/TextAnalyticsSamples.java), which contains the code examples in this quickstart.
46+
4447
Open the java file and add the following `import` statements:
4548

4649
```java

articles/cognitive-services/text-analytics/includes/quickstarts/nodejs-sdk.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: nitinme
66
ms.service: cognitive-services
77
ms.subservice: text-analytics
88
ms.topic: include
9-
ms.date: 03/06/2020
9+
ms.date: 03/12/2020
1010
ms.author: aahi
1111
ms.reviewer: sumeh, assafi
1212
---
@@ -36,9 +36,6 @@ ms.reviewer: sumeh, assafi
3636

3737
### Create a new Node.js application
3838

39-
> [!NOTE]
40-
> You can also run this version of the Text Analytics client library [in your browser](https://github.com/Azure/azure-sdk-for-js/blob/master/documentation/Bundling.md).
41-
4239
In a console window (such as cmd, PowerShell, or Bash), create a new directory for your app, and navigate to it.
4340

4441
```console
@@ -60,6 +57,9 @@ Install the `@azure/ai-text-analytics` NPM packages:
6057
npm install --save @azure/ai-text-analytics
6158
```
6259

60+
> [!TIP]
61+
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/javascript/TextAnalytics/text-analytics-v3-client-library.js), which contains the code examples in this quickstart.
62+
6363
#### [Version 2.1](#tab/version-2)
6464

6565
Install the `@azure/cognitiveservices-textanalytics` NPM packages:
@@ -68,14 +68,13 @@ Install the `@azure/cognitiveservices-textanalytics` NPM packages:
6868
npm install --save @azure/cognitiveservices-textanalytics
6969
```
7070

71-
Your app's `package.json` file will be updated with the dependencies.
72-
73-
Create a file named `index.js` and add the following libraries:
71+
> [!TIP]
72+
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-node-sdk-samples/blob/master/Samples/textAnalytics.js), which contains the code examples in this quickstart.
7473
7574
---
7675

7776
Your app's `package.json` file will be updated with the dependencies.
78-
Create a file named `index.js` and add the following libraries:
77+
Create a file named `index.js` and add the following:
7978

8079
#### [Version 3.0-preview](#tab/version-3)
8180

articles/cognitive-services/text-analytics/includes/quickstarts/python-sdk.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: aahill
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 02/26/2019
5+
ms.date: 03/12/2020
66
ms.author: aahi
77
---
88

@@ -38,12 +38,18 @@ After installing Python, you can install the client library with:
3838
pip install azure-ai-textanalytics
3939
```
4040

41+
> [!TIP]
42+
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/python/TextAnalytics/python-v3-client-library.py), which contains the code examples in this quickstart.
43+
4144
#### [Version 2.1](#tab/version-2)
4245

4346
```console
4447
pip install --upgrade azure-cognitiveservices-language-textanalytics
4548
```
4649

50+
> [!TIP]
51+
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-python-sdk-samples/blob/master/samples/language/text_analytics_samples.py), which contains the code examples in this quickstart.
52+
4753
---
4854

4955
### Create a new python application

articles/cognitive-services/text-analytics/quickstarts/text-analytics-sdk.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: text-analytics
1010
ms.topic: quickstart
11-
ms.date: 02/24/2020
11+
ms.date: 03/12/2020
1212
ms.author: aahi
1313
zone_pivot_groups: programming-languages-text-analytics
1414
---
@@ -52,6 +52,7 @@ Use the Text Analytics client library to perform:
5252
> * The latest preview version of the Text Analytics API is `3.0-preview`, which includes a public preview for improved [Sentiment Analysis](../how-tos/text-analytics-how-to-sentiment-analysis.md#sentiment-analysis-versions-and-features) and [Named Entity Recognition (NER)](../how-tos/text-analytics-how-to-entity-linking.md#named-entity-recognition-versions-and-features). The latest stable version is `2.1`.
5353
> * Be sure to only follow the instructions for the version you are using.
5454
> * The code in this article uses synchronous methods and un-secured credentials storage for simplicity reasons. For production scenarios, we recommend using the batched asynchronous methods for performance and scalability. See the reference documentation below.
55+
> * You can also run this version of the Text Analytics client library [in your browser](https://github.com/Azure/azure-sdk-for-js/blob/master/documentation/Bundling.md).
5556
5657
[!INCLUDE [NodeJS quickstart](../includes/quickstarts/nodejs-sdk.md)]
5758

0 commit comments

Comments
 (0)