{"library":"google-cloud-storage","install":[{"cmd":"pip install google-cloud-storage","imports":["from google.cloud import storage\n\n# ADC: reads GOOGLE_APPLICATION_CREDENTIALS env var or gcloud auth\nclient = storage.Client()\n\n# Explicit service account\nfrom google.oauth2 import service_account\ncredentials = service_account.Credentials.from_service_account_file('key.json')\nclient = storage.Client(credentials=credentials, project='my-project')","import vertexai\nfrom vertexai.generative_models import GenerativeModel\n\nvertexai.init(project='my-project', location='us-central1')\nmodel = GenerativeModel('gemini-2.0-flash')\nresponse = model.generate_content('Hello')"]},{"cmd":"pip install google-cloud-bigquery","imports":[]},{"cmd":"pip install google-cloud-aiplatform","imports":[]}]}