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

[Text Analytics] Merging feature branch for v5.2-beta.2 to main #18355

Merged
merged 22 commits into from
Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e705944
[Text Analytics] Regenerate using v3.2-preview.2 swagger (#17026)
deyaaeldeen Aug 25, 2021
0670f51
[Text Analytics] Support Custom Text (#17128)
deyaaeldeen Aug 31, 2021
c843314
[Text Analytics] Make project and deployment names required (#17402)
deyaaeldeen Sep 1, 2021
918da56
Merge remote-tracking branch 'upstream/main' into textanalytics/v3.2-…
deyaaeldeen Sep 20, 2021
82225ac
[Text Analytics] Add tests for Custom Text (#17756)
deyaaeldeen Sep 22, 2021
2874ac3
[Text Analytics] Refine proposed API View (#17794)
deyaaeldeen Sep 22, 2021
2294bd7
Merge branch 'main' into textanalytics/v3.2-preview.2
deyaaeldeen Oct 7, 2021
2f4a95c
Merge remote-tracking branch 'origin/main' into textanalytics/v3.2-pr…
deyaaeldeen Oct 11, 2021
84bdc62
[Text Analytics] address archboard feedback (#18131)
deyaaeldeen Oct 11, 2021
b8f7038
[Text Analytics] Add samples for Custom Text (#17822)
deyaaeldeen Oct 11, 2021
1199051
[Text Analytics] Use persistent CI resource
deyaaeldeen Oct 18, 2021
ad086f9
fix typo
deyaaeldeen Oct 18, 2021
a68c565
address feedback
deyaaeldeen Oct 18, 2021
66012db
fix typo
deyaaeldeen Oct 18, 2021
72db989
[Text Analytics] Fix Preview.2 samples (#18257)
deyaaeldeen Oct 18, 2021
59748aa
Merge remote-tracking branch 'upstream/main' into textanalytics/v3.2-…
deyaaeldeen Oct 22, 2021
a3021fa
[Text Analytics] Re-record all tests (#18354)
deyaaeldeen Oct 25, 2021
44e0200
address feedback
deyaaeldeen Oct 26, 2021
884e32e
Merge branch 'textanalytics/ci-persistent-resource' into textanalytic…
deyaaeldeen Oct 26, 2021
7d7d5fe
update swagger link
deyaaeldeen Oct 26, 2021
038b430
edit
deyaaeldeen Oct 26, 2021
6e98f6e
fix recordings
deyaaeldeen Oct 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions sdk/textanalytics/ai-text-analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Features Added

- We are now targeting the service's v3.2-preview.2 API as the default instead of v3.2-preview.1.
- Adding support for a three new actions in `beginAnalyzeActions`: `recognizeCustomEntities`, `singleCategoryClassify`, and `multiCategoryClassify`. The new actions allow you to use custom models to perform entity recognition and classification actions.

### Breaking Changes

### Bugs Fixed
Expand Down
4 changes: 3 additions & 1 deletion sdk/textanalytics/ai-text-analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Azure TextAnalytics](https://azure.microsoft.com/services/cognitive-services/text-analytics/) is a cloud-based service that provides advanced natural language processing over raw text, and includes the following main features:

**Note:** This SDK targets Azure Text Analytics service API version 3.2.0-preview.1.
**Note:** This SDK targets Azure Text Analytics service API version 3.2.0-preview.2.

- Language Detection
- Sentiment Analysis
Expand All @@ -12,6 +12,8 @@
- Linked Entity Recognition
- Extractive Summarization
- Healthcare Analysis
- Custom Entities Recognition
- Custom Document Classification
- Support Multiple Actions Per Document

Use the client library to:
Expand Down
8 changes: 7 additions & 1 deletion sdk/textanalytics/ai-text-analytics/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ module.exports = function(config) {
"TEXT_ANALYTICS_API_KEY_ALT",
"AZURE_CLIENT_ID",
"AZURE_CLIENT_SECRET",
"AZURE_TENANT_ID"
"AZURE_TENANT_ID",
"TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_PROJECT_NAME",
"TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_DEPLOYMENT_NAME",
"TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME",
"TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME",
"TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME",
"TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME"
],

// test results reporter to use
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading