Back to Genai Toolbox

Cloud Setup

docs/en/documentation/getting-started/quickstart/shared/cloud_setup.md

1.1.0710 B
Original Source
<!-- This file has been used in local_quickstart.md, local_quickstart_go.md & local_quickstart_js.md --> <!-- [START cloud_setup] -->

If you plan to use Google Cloud’s Vertex AI with your agent (e.g., using vertexai=True or a Google GenAI model), follow these one-time setup steps for local development:

  1. Install the Google Cloud CLI

  2. Set up Application Default Credentials (ADC)

  3. Set your project and enable Vertex AI

    bash
    gcloud config set project YOUR_PROJECT_ID
    gcloud services enable aiplatform.googleapis.com
    
<!-- [END cloud_setup] -->