Skip to content

Commit

Permalink
[Text Analytics] Allow multiple actions of the same type (#18382)
Browse files Browse the repository at this point in the history
* [Text Analytics] Allow multiple actions of the same type

* address feedback

* remove onlys
  • Loading branch information
deyaaeldeen authored Oct 28, 2021
1 parent 8fcdbfe commit bd0bca6
Show file tree
Hide file tree
Showing 17 changed files with 701 additions and 83 deletions.
10 changes: 10 additions & 0 deletions sdk/textanalytics/ai-text-analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@

### Other Changes

- `beginAnalyzeActions` supports multiple actions of the same type so you can pass a list of any particular action type, e.g.


```typescript
await client.beginAnalyzeActions(docs, { recognizePiiEntitiesActions: [
{ modelVersion: "latest", actionName: "action1" },
{ modelVersion: "2021-01-15", actionName: "action2" }]
});
```

## 5.2.0-beta.1 (2021-08-09)

### Features Added
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.

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

Loading

0 comments on commit bd0bca6

Please sign in to comment.