Google gemini-2.5-computer-use-preview-10-2025 hosted on GCP Vertex AI in us-central1.
Provider: All Google models | GCP Vertex AI
Inference regions: us-central1
https://us-central1-aiplatform.googleapis.com/v1/projects/{project}/locations/{region}/publishers/{publisher}/models/{model}:generateContentInstall: pip install google-cloud-aiplatform
import vertexai
from vertexai.generative_models import GenerativeModel
vertexai.init(project="your-project-id", location="us-central1")
model = GenerativeModel("gemini-2.5-computer-use-preview-10-2025")
response = model.generate_content("Hello, how are you?")
print(response.text)| Parameter | Type | Description |
|---|---|---|
| maxOutputTokens | integer | Maximum number of tokens to generate. (≥1) |
| temperature | float | Controls randomness. (0–2) Default: 1. |
| topP | float | Nucleus sampling threshold. (0–1) Default: 1. |
| topK | integer | Top-K sampling. (≥0) |
| stopSequences | string | Sequences where generation stops. |