Google Vertex AI
The google-vertex-ai provider gives selected sandboxes access to native
Google Vertex AI endpoints. OpenShell keeps refresh bootstrap material at the
gateway, rotates short-lived access tokens, and resolves token placeholders
only at endpoints authorized by the provider profile.
OpenShell does not choose a model or transform a request. The workload uses the native Vertex endpoint and request format for its selected model.
Prerequisites
- A GCP project with the Vertex AI API enabled.
- A service account with the Vertex AI User role and a downloaded JSON key for production, or gcloud Application Default Credentials for local development.
- Access to the selected model in the intended Vertex region.
Create a Provider
Service Account Key
Create the provider with the JSON key as gateway-only bootstrap material:
Configure gateway-managed refresh:
The private key remains in the gateway credential store. Sandboxes receive only an opaque placeholder for the short-lived access token.
gcloud Application Default Credentials
For local development:
--from-gcloud-adc reads authorized-user ADC, configures an OAuth2 refresh
grant at the gateway, and immediately mints GOOGLE_VERTEX_AI_TOKEN. The ADC
file and refresh token do not enter the sandbox.
Configuration Keys
When the provider is attached, OpenShell also projects standard project and
location aliases such as GOOGLE_CLOUD_PROJECT, ANTHROPIC_VERTEX_PROJECT_ID,
CLOUD_ML_REGION, and VERTEX_LOCATION.
Attach the Provider
Attach it while creating a sandbox:
Or attach it to an existing sandbox:
Launch a new process after runtime attachment so it receives the provider environment. Existing processes do not gain newly attached environment variables.
Call the Native Vertex API
Claude models use Vertex’s publisher-model endpoint. Run a request from a new sandbox process:
Use the model ID and location supported by your GCP project. For global, us,
or eu, use the corresponding Google-documented hostname instead of the
regional <location>-aiplatform.googleapis.com form.
Gemini and third-party models use their documented native or OpenAI-compatible Vertex endpoints. Configure the model, URL, streaming mode, and timeout in the client. OpenShell does not rewrite them.
Verify and Troubleshoot
Inspect the attachment and effective policy:
Common failures:
- A missing token variable usually means the process started before provider attachment. Launch a new process.
connection not allowed by policymeans the provider endpoint or caller binary is absent from the effective policy. A gateway global policy override suppresses provider-derived entries.credential_endpoint_mismatchmeans the request destination is outside the provider profile’s endpoint binding.- A Vertex 400 or 404 usually means the model, location, publisher path, or request body does not match the native API.
- A Vertex 401 or 403 can indicate an expired refresh grant or missing GCP IAM
permission. Check
provider refresh statusand the Vertex AI User role.
Provider creation does not verify model access. The native request is the end-to-end check.
Migrate an Existing Vertex Route
An earlier managed route stored the provider and model separately and rewrote requests for the workload. After upgrading, the provider and its refresh state remain, but the route does not.
- Attach the preserved Vertex provider to each intended sandbox.
- Launch new workload processes.
- Move the route’s model and timeout into the client configuration.
- Change the client to the native Vertex endpoint and request format.
- Verify one non-streaming and one streaming native request before production rollout.
Do not attach the provider to every sandbox automatically. The old route was workspace-global; the replacement intentionally grants access per sandbox.