npx skills add ...
npx skills add google/skills --skill agent-platform-inference
Connects to and performs inference with Google Cloud Agent Platform GenAI models, including First-Party Gemini models and Third-Party OpenMaaS models (Llama, DeepSeek, Qwen, etc.). Use when asked to perform inference, ask a model a question, run a test prompt, execute chat completions, or generate code for calling Gemini or OpenMaaS models, authenticate with GenAI SDK, OpenAI SDK, or legacy Agent Platform SDK, configure base URLs and global/regional endpoints, or troubleshoot 429 Resource Exhausted (DSQ), 400 User Validation, or 404 Not Found errors. Don't use for deploying models to endpoints or for running model evaluations.
npx skills add google/skills --skill agent-platform-inference
This skill provides instructions for authenticating and connecting to Google Cloud Agent Platform to use Generative AI models. It covers:
projects/.../endpoints/<id>
resource — tuned Gemini models, OSS LLMs self-deployed from Model Garden
via the agent-platform-deploy skill, and legacy custom models) —
section 4.Before executing any commands or scripts on behalf of the user, you must adhere to the following safety tiers based on the action requested. (The skill is read-only; other safety tiers are omitted):
client.models.generate_content,
client.chat.completions.create, client.completions.create,
client.embeddings.create)
123456789012, my-project).us-central1,
global).gemini-2.5-flash,
deepseek-ai/deepseek-v3.2-maas).Google GenAI SDK (google-genai),
OpenAI SDK).max_output_tokens,
response_schema) if specified.
Natural-language paraphrases without explicitly listing these
parameters are NOT sufficient.I will perform model inference with the following parameters. Please confirm this information before I proceed:
- Project ID:
my-project- Region:
us-central1- Model ID:
gemini-2.5-pro- SDK: Google GenAI SDK (
google-genai)- Input Prompt: "Summarize the plot of Hamlet in 3 sentences"
Do you confirm? [Yes/No]
CRITICAL: Before running any of the Python sample scripts in the scripts/
directory (e.g., scripts/openmaas_openai_sdk.py), you MUST ensure the
environment is correctly initialized by following these steps:
Google Cloud Authentication: Authenticate with your Google Cloud credentials and configure active Application Default Credentials (ADC) for Agent Platform access:
Enable API (if not already enabled):
Python Dependencies: The scripts import vertexai (from
google-cloud-aiplatform), google-genai, and openai. Do not create
a virtual environment — it starts empty and hides packages the environment
already provides, forcing a redundant install. Probe, and install only what
is missing:
scripts/requirements.txt is a fallback for an environment that does not
already provide these SDKs; do not install it on top of a working
environment.
Verify Setup (Optional): Run all sample scripts at once to verify the environment is working end-to-end:
Execution: Run the scripts with a plain python3 scripts/.... There is
no environment to activate first.
[!IMPORTANT] CRITICAL: Model IDs & Availability * Gemini Models: See [Gemini Models][gemini-models-docs] for valid Model IDs and Regions. * OpenMaaS Models: See Use Open Models on Agent Platform for Llama, DeepSeek, Qwen, etc. * Incomplete Lists: The Model IDs listed in this skill are examples only and may be incomplete or outdated. * Action: Always verify the Model ID and Region using the links above before generating code.
[gemini-models-docs]: https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/migrate
Before preparing code or presenting a Tier R confirmation card, you MUST ensure all necessary parameters are grounded:
Missing Model ID, Model Family, or SDK (CRITICAL):
gemini-2.5-flash, gemini-2.5-pro, or deepseek-v3.2-maas).
Proposing a defaulted model in a confirmation card without asking
violates parameter grounding.Missing Project ID or Region:
If the user's project ID or region is not specified in the prompt or conversation context, ASK the user for the project ID and region (e.g. "Which project ID and region would you like to use?"). Do not silently assume a project or region.
OpenMaaS Locations: OpenMaaS publisher models are hosted on global
(e.g. deepseek-ai/deepseek-v3.2-maas,
meta/llama-3.3-70b-instruct-maas) or regional endpoints such as
us-central1 (e.g. deepseek-ai/deepseek-r1-0528-maas).
When configuring inference for OpenMaaS models, use the appropriate
endpoint:
https://aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/global/endpoints/openapihttps://{REGION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{REGION}/endpoints/openapiand explicitly reflect the region in the confirmation card and final response.
SDK Choice:
google-genai for
Gemini, OpenAI SDK openai for OpenMaaS).Sandbox Execution via Python (CRITICAL):
run_command,
ALWAYS run Python code using the official SDKs (e.g., writing and
running a Python script with google-genai, openai, or vertexai).
Do not use raw curl commands for final inference execution.Model Specified?
deepseek-ai/deepseek-r1-0528-maas,
deepseek-ai/deepseek-v3.2-maas, meta/llama-3.3-70b-instruct-maas).Model Family & SDK Selection:
gemini-2.5-pro, gemini-2.5-flash) -> Preferred:
GenAI SDK (google-genai). Proceed to [1. Gemini Models].deepseek-ai/*, meta/llama-*, qwen/*) ->
Preferred: OpenAI SDK (openai). Proceed to [2. OpenMaaS Models].projects/.../endpoints/<id>) -> Proceed to [4. Custom Endpoints].Troubleshooting: Is the user reporting an error (429 Resource Exhausted, 400 User Validation, 404 Not Found, empty response due to token limits, etc.)?
[!NOTE] Skip this section if either of these applies:
- The user is calling a custom endpoint (§4) — a tuned Gemini model served on a numeric
projects/.../endpoints/<id>, a self-deployed OSS LLM (Llama, DeepSeek, Qwen, Gemma, etc.), or a legacy custom model. Those requests hit a specific endpoint resource whose region is fixed at deploy time; if the caller-side region doesn't match, the endpoint lookup returns a clean 404 without incurring inference cost. Go to §4.- The user is calling an OpenMaaS publisher model (§2) — Llama, DeepSeek, Qwen, etc. served via the global
openapibase URL. These don't have per-region availability restrictions in the same way first-party Gemini does. Go to §2.Apply this section only if the user is calling a first-party managed Gemini model (
gemini-*, via §1), including fine-tuned LoRA adapters on top of Gemini — these route through a publisher endpoint whose regional availability actually varies.
Before responding to any inference request that names a specific region for a
first-party managed Gemini model (gemini-*) or a fine-tuned Gemini LoRA
adapter (identified by numeric endpoint ID + user-stated base model), you
MUST verify the model is actually available in that region by making a
live API call. Do not rely on Google Search, training-corpus knowledge, or
publisher documentation for availability claims — regional availability
changes frequently and grounded text can be stale or wrong.
Probe only the exact model and region the user asked about. Do not probe other models as a "control" — you cannot infer anything about model A's availability from model B's status, because a different model may itself be unavailable in the reference region for unrelated reasons.
For first-party Gemini models, probe with a real :generateContent call using
a minimal valid payload:
For inference against a fine-tuned Gemini LoRA adapter, probe the base
model in the target region using the same :generateContent call above with
${MODEL_ID} set to the base (e.g. gemini-2.5-flash if the adapter was
tuned on gemini-2.5-flash). The LoRA adapter cannot serve in a region where
its base model isn't available.
Interpret the probe result and act:
gcloud ai model-garden models list --filter="name~$MODEL_NAME" without --region). Do not silently switch
regions. Do not proceed to write inference code or SDK initialization for
the unsupported region. Do not run additional "control" probes to
double-check the 404 — the target-region probe is authoritative.For Gemini models (e.g., gemini-2.5-pro, gemini-3-flash-preview), the
GenAI SDK (google-genai) is the PREFERRED method. The legacy
vertexai SDK is still supported but GenAI SDK is recommended for new projects.
[!IMPORTANT] Preview Models (including Gemini 3.1) are often ONLY available in the
globalregion. Stable models are available inus-central1and other regions.
google-genai) is PREFERRED. Use
OpenAI SDK for compatibility, or Legacy SDK (vertexai) if needed.See scripts/gemini_genai_sdk.py for the
complete code.
Use the standard OpenAI SDK with the Agent Platform endpoint. This is great for cross-compatibility.
See scripts/gemini_openai_sdk.py for the
complete code.
The legacy vertexai SDK is still widely used but google-genai is preferred
for new Gemini projects.
See scripts/gemini_vertexai_sdk.py for the
complete code.
Documentation: Google GenAI SDK
Documentation: Agent Platform Gemini Models
For OpenMaaS (Model-as-a-Service) models, the HIGHLY RECOMMENDED approach is to use the standard OpenAI SDK with a specific Vertex AI endpoint.
[!WARNING] While
GenerativeModelcan support some OpenMaaS models, it is discouraged. Use the OpenAI SDK for best compatibility (especially for Chat Completions).
You MUST use a Google Cloud OAuth access token as the API key for the OpenAI SDK.
[!NOTE] Google Cloud access tokens typically expire after 1 hour. The
get_gcp_access_token()function above retrieves a fresh token at the time it is called. For long-running applications, you implement a refresh mechanism. See Refresh the access token for details.
https://aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/global/endpoints/openapihttps://{REGION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{REGION}/endpoints/openapiSee scripts/openmaas_openai_sdk.py for the
complete code.
[!TIP] Alternative: Environment Variables You can set environment variables in your shell instead of updating the code.
Alternative: Environment Variables You can set environment variables in your shell instead of updating the code.
Then initialize the client without arguments:
client = OpenAI()
The following models support the legacy Completions API: zai-org/glm-5-maas,
moonshotai/kimi-k2-thinking-maas, minimaxai/minimax-m2-maas,
deepseek-ai/deepseek-v3.1-maas, and deepseek-ai/deepseek-v3.2-maas.
The google-genai SDK can also access OpenMaaS models via the vertexai
backend.
See scripts/openmaas_genai_sdk.py for the
complete code.
[!IMPORTANT] Model ID Format: For GenAI SDK with OpenMaaS, you MUST use the full path:
publishers/PUBLISHER/models/MODEL(e.g.,publishers/zai-org/models/glm-5-maas).
For OpenMaaS, you can also use GenerativeModel (if supported).
See scripts/openmaas_vertexai_sdk.py for
the complete code.
[!IMPORTANT] Model ID Format: For Agent Platform SDK with OpenMaaS, you MUST use the full path:
publishers/PUBLISHER/models/MODEL.
Documentation: Use Open Models on Agent Platform
[!TIP] Self-Deployment for Control: If you need dedicated hardware (GPUs/TPUs), guaranteed capacity, or specific regional placement not offered by MaaS, you can Self-Deploy these models to Agent Platform Endpoints. Search for the model in Model Garden and click "Deploy" to select your machine type. See the
agent-platform-deployskill for the deployment workflow, and section 4 of this skill for how to invoke the resulting self-deployed endpoint (use/chat/completionson the dedicated endpoint DNS, NOT the OpenMaaS publisher URL above).
[!IMPORTANT] Finding Inference Examples: The list above is a starting point. For the definitive inference snippets (especially for Chat Completions payload structure): 1. Consult the Use Open Models on Agent Platform list. 2. Click the link for your specific model (e.g., "DeepSeek-V3") to visit its Model Garden page. 3. Look for the "Sample Code" or "Use this model" button on the Model Garden page to get the exact
curlor Python code for that specific model version.
[!NOTE] This list is INCOMPLETE. See Use Open Models on Agent Platform for the full list of supported models.
| Model Family | Model ID Examples | Location | Notes |
|---|---|---|---|
| Llama 4 | meta/llama-4-maverick-17b-128e-instruct-maas | us-east5 | |
| Llama 4 | meta/llama-4-scout-17b-16e-instruct-maas | us-east5 | |
| Llama 3.3 | meta/llama-3.3-70b-instruct-maas | us-central1 | |
| DeepSeek | deepseek-ai/deepseek-v3.2-maas | global | Global ONLY |
| DeepSeek | deepseek-ai/deepseek-v3.1-maas | us-west2 | US-West2 ONLY |
| DeepSeek | deepseek-ai/deepseek-r1-0528-maas | us-central1 | |
| Qwen 3 | qwen/qwen3-coder-480b-a35b-instruct-maas | global | |
| Qwen 3 | qwen/qwen3-next-80b-a3b-instruct-maas | global | |
| Kimi | moonshotai/kimi-k2-thinking-maas | global | |
| MiniMax | minimaxai/minimax-m2-maas | global | |
| GLM | zai-org/glm-4.7-maas, zai-org/glm-5-maas | global |
This section covers how to invoke a model on an Agent Platform
Endpoint that belongs to your project — i.e., something with a
numeric resource name like
projects/.../endpoints/5875254126916403200. This is distinct from
calling the publisher MaaS surfaces in sections 2 and 3 (which hit
publishers/.../models/... or endpoints/openapi, not your endpoint
ID).
[!IMPORTANT]
Publisher MaaS vs your endpoint (don't confuse them). Section 3's OpenMaaS examples (e.g.
meta/llama-3.3-70b-instruct-maas) hit a shared publisher URL at/v1/projects/.../locations/.../endpoints/openapi. This section's recipes hit YOUR endpoint at/v1/projects/.../endpoints/<id>. If you have a Llama / Gemma / etc. model deployed via Model Garden "Deploy" (NOT the MaaS publisher product), follow this section — not section 3.
[!IMPORTANT]
Active Endpoint Discovery & Single Source of Truth:
To check if a model or tuned Gemini adapter is deployed and ready for inference, run:
gcloud ai endpoints list --project=<PROJECT_ID> --region=<REGION> --format=json.
gcloud ai endpoints listis the ONLY authoritative source of active serving endpoints.Do NOT rely on historical
job.tunedModel.endpointidentifiers from pastgcloud ai tuning-jobs listrecords — those record where an endpoint was initially created during tuning, but if the endpoint was subsequently deleted, undeployed, or expired, it is no longer active.If
gcloud ai endpoints listreturns empty[]or the requested tuned model is not deployed on any listed endpoint, report directly to the user that no active endpoint was found in that region and halt. NEVER hallucinate that historical/deleted endpoints are ready, and NEVER silently substitute the base model without explicit user instruction and a fresh Tier R confirmation prompt.
[!IMPORTANT]
Two orthogonal axes determine the call shape:
Axis 1 — model family drives the RPC method and payload:
Endpoint serves Method Payload A tuned Gemini model (output of Gemini tuning — the endpoint is already deployed for you) :generateContentcontents/generationConfigA self-deployed OSS LLM (Llama, DeepSeek, Qwen, Gemma, Mistral, etc., deployed via Model Garden) /chat/completionsOpenAI-compatible messagesA legacy custom model (classification, regression, custom-trained, embedding) :predictinstances/parametersRun
gcloud ai endpoints describe <ENDPOINT_ID> --region=<REGION> --format=jsonand inspectdeployedModels[].modelto decide: containsgemini→ tuned Gemini; matches an OSS publisher (meta/,google/gemma-,deepseek-ai/,qwen/, ...) → OSS LLM; otherwise → likely legacy custom.Axis 2 — endpoint type (shared vs dedicated) drives the URL host:
dedicatedEndpointEnabledHost false(default — shared endpoint)<REGION>-aiplatform.googleapis.comtrue(dedicated endpoint, has its own DNS)the value of dedicatedEndpointDns(format:<ENDPOINT_ID>.<REGION>-<PROJECT_NUM>.prediction.vertexai.goog)A dedicated endpoint cannot be reached via the shared
<REGION>-aiplatform.googleapis.comhost (per theEndpoint.dedicated_endpoint_enabledproto: "Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS"). Always checkdedicatedEndpointDnsin the describe output: if it's set, use it as the host; otherwise use the shared host.Path is always
/v1/projects/.../locations/.../endpoints/<id>/...on both hosts. Both/v1/(GA) and/v1beta1/(beta) route to the same backend; the recipes in this skill use/v1/. The public Gemma deployment notebook still uses/v1beta1/, which also works.
Output of Gemini tuning is always an endpoint that's already deployed for
you, reachable on the shared host with :generateContent.
[!WARNING]
If you set
maxOutputTokens, be generous for thinking models. Gemini 2.5 Pro (and other thinking-enabled models) emit "thoughts" tokens that count againstmaxOutputTokensBEFORE any user-visible text. With a small cap (e.g. 100), the entire budget is consumed by thoughts and the response has emptytextparts but a non-zerousageMetadata.candidatesTokenCount.If you don't need to constrain output length, omit
maxOutputTokensentirely and let the model emit as much as it wants. If you do set it:>= 512for any chat-like use,>= 1024for a paragraph of output. If you seefinishReason: "MAX_TOKENS"and notextcontent in the response, your cap is too low.
Self-deployed OSS LLMs may be on a shared or dedicated endpoint
depending on how the deploy was configured (dedicated_endpoint_enabled
at create time). The recipe below handles both cases by checking
dedicatedEndpointDns in the describe output.
[!NOTE]
max_tokens(NOTmaxOutputTokens) — this is OpenAI-compatible vocabulary, not Vertex. Omit it entirely to let the model emit as much as it wants; set it explicitly only if you need to cap output.- The
"model"field in the OpenAI-style payload can be omitted (or set to"") for endpoint deployments — the endpoint already determines which model serves the request.- Same endpoint also exposes
/completions(legacy text completion) and/embeddingsfor embedding models.- Reasoning models (DeepSeek-R1, Kimi-K2-Thinking, GLM-5 variants, etc.) emit thinking tokens that count against
max_tokensBEFORE the final answer — same pathology as Gemini 2.5 Pro in section 4a. If you DO setmax_tokensand get an emptychoices[0].message.contentorfinish_reason: "length", raise it (>= 1024 for chat, >= 2048 for longer thinking chains) or omit it.
Python equivalent (OpenAI SDK) — mirrors the public Gemma deployment notebook:
See also: agent-platform-deploy skill section 4 "Verifying Deployment",
which uses the same pattern post-deploy.
:predict (custom / classification / embedding)Same host-discovery logic as 4b (shared or dedicated based on
dedicatedEndpointDns):
The exact instances shape is model-specific; consult the deployed
model's documentation or the Model Garden card it was deployed from.
:predict → switch to :generateContent
(section 4a). Error mentions "Required instances format mismatch".:generateContent or :predict → switch to /chat/completions
(section 4b). Error may be 404, 405, or "method not allowed".:generateContent or
/chat/completions → switch to :predict (section 4c).Could not resolve host) or 404.<REGION>-aiplatform.googleapis.com, and the dedicated DNS
(*.prediction.vertexai.goog) only exists when
dedicatedEndpointEnabled is true.gcloud ai endpoints describe ... --format=json
for the dedicatedEndpointDns field; use it iff non-empty (per
the host-discovery snippets in section 4b/4c).maxOutputTokens is set too low. Gemini 2.5 Pro and other
thinking models emit "thoughts" tokens that count against the budget
BEFORE any user-visible text. With a small cap (e.g. 100), the entire
budget is consumed by thoughts and the response has empty text parts
but a non-zero usageMetadata.candidatesTokenCount and
finishReason: "MAX_TOKENS".maxOutputTokens entirely (let the model emit as much
as it wants), or raise it to >= 512 for chat-like use, >= 1024 for
longer output. See section 4 "Custom Endpoints" for details.us-central1 or global regions.us-central1, europe-west4, and many other regions.us-central1 or global.