multimodalembedding (us-east4)

Google multimodalembedding hosted on GCP Vertex AI in us-east4.

Provider: All Google models | GCP Vertex AI

Inference regions: us-east4

API Endpoint

https://us-east4-aiplatform.googleapis.com/v1/projects/{project}/locations/{region}/publishers/{publisher}/models/{model}:generateContent

Quick Start (Python)

Install: pip install google-cloud-aiplatform

import vertexai
from vertexai.generative_models import GenerativeModel

vertexai.init(project="your-project-id", location="us-east4")

model = GenerativeModel("multimodalembedding")

response = model.generate_content("Hello, how are you?")

print(response.text)

Supported Parameters

ParameterTypeDescription
maxOutputTokensintegerMaximum number of tokens to generate. (≥1)
temperaturefloatControls randomness. (0–2) Default: 1.
topPfloatNucleus sampling threshold. (0–1) Default: 1.
topKintegerTop-K sampling. (≥0)
stopSequencesstringSequences where generation stops.