Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finalized Text Analytics and prepare to release Text Analytics Preview 1 #7289

Merged
merged 6 commits into from
Jan 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion eng/docgeneration/service-mapper.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,9 @@
"subscription": "Subscription",
"template": "Template",
"test-utils": "Test Utils",
"textanalytics": "Text Analytics",
"timeseriesinsights": "Time Series Insights",
"trafficmanager": "Traffic Manager",
"visualstudio": "Visual Studio",
"vmwarecloudsimple": "VMware CloudSimple"
}
}
16 changes: 13 additions & 3 deletions sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Release History

## 1.0.0-beta.1 (2020-01-09)
Version 1.0.0-beta.1 is a preview of our efforts in creating a client library that is developer-friendly, idiomatic
to the Java ecosystem, and as consistent across different languages and platforms as possible. The principles that guide
our efforts can be found in the [Azure SDK Design Guidelines for Java](https://azure.github.io/azure-sdk/java_introduction.html).

- Initial release of this module.
- It uses the Text Analytics service `v3.0-preview.1` API.
- New namespace/package name:
- The namespace/package name for Azure Text Analytics client library has changed from
`com.microsoft.azure.cognitiveservices.language.textanalytics` to `com.azure.ai.textanalytics`
- Added support for subscription key and AAD authentication for both synchronous and asynchronous clients.
- Added Detect Language, Recognize Entity, Recognize PII entity, Recognize Linking Entity, Analyze Sentiment APIs.
- Added support for:
- Subscription key and AAD authentication for both synchronous and asynchronous clients.
- Language detection.
- Entity recognition.
- Entity linking recognition.
- Personally identifiable information entities recognition.
- Key phrases extraction.
- Analyze sentiment APIs including analysis for mixed sentiment.
- Reactive streams support using [Project Reactor](https://projectreactor.io/).

This package's
[documentation](https://github.com/Azure/azure-sdk-for-java/blob/azure-ai-textanalytics_1.0.0-beta.1/sdk/textanalytics/azure-ai-textanalytics/README.md)
Expand Down
4 changes: 2 additions & 2 deletions sdk/textanalytics/azure-ai-textanalytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ for (TextSentiment textSentiment : textAnalyticsClient.analyzeSentiment(text).ge
## Troubleshooting
### General
Text Analytics clients raise exceptions. For example, if you try to detect the languages of a batch of text with same
document IDs, 400 error is return that indicating bad request. In the following code snippet, the error is handled
document IDs, `400` error is return that indicating bad request. In the following code snippet, the error is handled
gracefully by catching the exception and display the additional information about the error.

<!-- embedme ./src/samples/java/com/azure/ai/textanalytics/ReadmeSamples.java#L164-L168 -->
Expand Down Expand Up @@ -322,7 +322,7 @@ When you submit a pull request, a CLA-bot will automatically determine whether y
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For more information see the [Code of Conduct FAQ][coc_faq] or contact [[email protected]][coc_contact] with any additional questions or comments.

<!-- LINKS -->
[api_reference_doc]: https://azure.github.io/azure-sdk-for-java/textanalytics.html
[api_reference_doc]: https://aka.ms/azsdk-java-textanalytics-ref-docs
[azure_subscription]: https://azure.microsoft.com/free
[cla]: https://cla.microsoft.com
[coc]: https://opensource.microsoft.com/codeofconduct/
Expand Down