@@ -14,7 +14,7 @@ and dialects while preserving document structure and data format. Use the client
14
14
### Prerequisites
15
15
* Python 2.7, or 3.6 or later is required to use this package.
16
16
* You must have an [ Azure subscription] [ azure_subscription ] and a
17
- [ Document Translation resource] [ DT_resource ] to use this package.
17
+ [ Translator resource] [ DT_resource ] to use this package.
18
18
19
19
### Install the package
20
20
Install the Azure Document Translation client library for Python with [ pip] [ pip ] :
@@ -25,19 +25,19 @@ pip install azure-ai-translation-document --pre
25
25
26
26
> Note: This version of the client library defaults to the v1.0 version of the service
27
27
28
- #### Create a Document Translation resource
29
- Document Translation supports [ single-service access] [ single_service ] only.
28
+ #### Create a Translator resource
29
+ The Document Translation feature supports [ single-service access] [ single_service ] only.
30
30
To access the service, create a Translator resource.
31
31
32
32
You can create the resource using
33
33
34
34
** Option 1:** [ Azure Portal] [ azure_portal_create_DT_resource ]
35
35
36
36
** Option 2:** [ Azure CLI] [ azure_cli_create_DT_resource ] .
37
- Below is an example of how you can create a Document Translation resource using the CLI:
37
+ Below is an example of how you can create a Translator resource using the CLI:
38
38
39
39
``` bash
40
- # Create a new resource group to hold the document translation resource -
40
+ # Create a new resource group to hold the Translator resource -
41
41
# if using an existing resource group, skip this step
42
42
az group create --name my-resource-group --location westus2
43
43
```
@@ -55,12 +55,12 @@ az cognitiveservices account create \
55
55
```
56
56
57
57
### Authenticate the client
58
- In order to interact with the Document Translation service, you will need to create an instance of a client.
58
+ In order to interact with the Document Translation feature service, you will need to create an instance of a client.
59
59
An ** endpoint** and ** credential** are necessary to instantiate the client object.
60
60
61
61
62
62
#### Looking up the endpoint
63
- You can find the endpoint for your Document Translation resource using the
63
+ You can find the endpoint for your Translator resource using the
64
64
[ Azure Portal] [ azure_portal_get_endpoint ] .
65
65
66
66
> Note that the service requires a custom domain endpoint. Follow the instructions in the above link to format your endpoint:
0 commit comments