Set up a translation project

This page helps developers set up a Google Distributed Cloud (GDC) air-gapped project to use Vertex AI Translation. This process includes creating a project, enabling the Vertex AI Translation API, installing client libraries, defining environment variables, and authenticating your credentials. If you are new to Vertex AI, learn more about translation features.

You set up a translation project using the GDC console and gdcloud CLI as follows:

  • GDC console: Enable the Vertex AI Translation API and view the service status and endpoint.
  • The gdcloud CLI: Configure service accounts to interact with the Vertex AI Translation API, install client libraries, and authenticate API requests.

Create a project

Creating a translation project within your Distributed Cloud resource hierarchy organizes your Vertex AI Translation resources, which include collaborators, enabled APIs, monitoring tools, billing information, authentication credentials, and access controls.

To create your project, see Set up a project for Vertex AI. You need your project ID when making API calls.

Request developer permissions

You must have the AI Translation Developer role in your project to access translation services and generate an API token for request authentication and authorization.

Ask your Project IAM Admin to grant the AI Translation Developer (ai-translation-developer) role to your user or service account within your project namespace. For information about this role, see Prepare IAM permissions.

Enable the Vertex AI Translation API

You must enable the Vertex AI Translation pre-trained API for your project. If enabled, you can view the service status and endpoint for the Vertex AI Translation pre-trained API.

Install client libraries

Client libraries are available for the Python programming language. We recommend using these client libraries to make calls to the Vertex AI Translation API because they make it easier to access APIs.

Install the Vertex AI Translation client library and follow these steps to ensure you have the correct version:

  1. Check if the Vertex AI Translation client library is installed and obtain the version number:

    pip freeze | grep translation
    

    If the client library is already installed, you obtain an output similar to the following example:

    google-cloud-translation==3.8.0
    

    The version number you obtain must match the client library at the following endpoint:

    https://GDC_URL/.well-known/static/client-libraries
    

    Replace GDC_URL with the URL of your organization in GDC.

  2. If the version numbers don't match, uninstall the client library:

    pip uninstall google-cloud-translation
    
  3. If you uninstalled the Vertex AI Translation client library, you must reinstall it by specifying the filename corresponding to your operating system.

Set your environment variables

After installing the Vertex AI Translation client library, you can interact with the API from a Python script.

If you set up a service account in your project to make authorized API calls programmatically, you can define environment variables in the Python script to access values such as the service account keys when running.

Follow these steps to set required environment variables on a Python script:

  1. Create a JupyterLab notebook to interact with the Vertex AI Translation pre-trained API.

  2. Create a Python script on the JupyterLab notebook.

  3. Add the following code to the Python script:

    import os
    
    os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "APPLICATION_DEFAULT_CREDENTIALS_FILENAME"
    

    Replace APPLICATION_DEFAULT_CREDENTIALS_FILENAME with the name of the JSON file that contains the service account keys you created in the project, such as my-service-key.json.

  4. Save the Python script with a name, such as translation.py.

  5. Run the Python script to set the environment variables:

    python SCRIPT_NAME
    

    Replace SCRIPT_NAME with the name you gave to your Python script, such as translation.py.

Set up authentication

Before you can start using the Vertex AI Translation API, you must authenticate your client credentials and request account access to your project resources. For more information, see Authenticate API requests.