pydantic_ai.models.vertexai
Custom interface to the *-aiplatform.googleapis.com
API for Gemini models.
This model uses GeminiAgentModel
with just the URL and auth method
changed from the default GeminiModel
, it relies on the VertexAI
generateContent
function endpoint
and streamGenerateContent
function endpoints
having the same schemas as the equivalent Gemini endpoints.
There are four advantages of using this API over the generativelanguage.googleapis.com
API which
GeminiModel
uses, and one big disadvantage.
Advantages:
- The VertexAI API seems to be less flakey, less likely to occasionally return a 503 response.
- You can purchase provisioned throughput with VertexAI.
- If you're running PydanticAI inside GCP, you don't need to set up authentication, it should "just work".
- You can decide which region to use, which might be important from a regulatory perspective, and might improve latency.
Disadvantage:
- When authorization doesn't just work, it's much more painful to set up than an API key.
Example Usage
With the default google project already configured in your environment:
from pydantic_ai import Agent
from pydantic_ai.models.vertexai import VertexAIModel
model = VertexAIModel('gemini-1.5-flash')
agent = Agent(model)
result = agent.run_sync('Tell me a joke.')
print(result.data)
#> Did you hear about the toothpaste scandal? They called it Colgate.
Or using a service account JSON file:
from pydantic_ai import Agent
from pydantic_ai.models.vertexai import VertexAIModel
model = VertexAIModel(
'gemini-1.5-flash',
service_account_file='path/to/service-account.json',
)
agent = Agent(model)
result = agent.run_sync('Tell me a joke.')
print(result.data)
#> Did you hear about the toothpaste scandal? They called it Colgate.
VERTEX_AI_URL_TEMPLATE
module-attribute
VERTEX_AI_URL_TEMPLATE = "https://{region}-aiplatform.googleapis.com/v1/projects/{project_id}/locations/{region}/publishers/{model_publisher}/models/{model}:"
URL template for Vertex AI.
See
generateContent
docs
and
streamGenerateContent
docs
for more information.
The template is used thus:
region
is substituted with theregion
argument, see available regionsmodel_publisher
is substituted with themodel_publisher
argumentmodel
is substituted with themodel_name
argumentproject_id
is substituted with theproject_id
from auth/credentialsfunction
(generateContent
orstreamGenerateContent
) is added to the end of the URL
VertexAIModel
dataclass
Bases: Model
A model that uses Gemini via the *-aiplatform.googleapis.com
VertexAI API.
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
|
__init__
__init__(
model_name: GeminiModelName,
*,
service_account_file: Path | str | None = None,
project_id: str | None = None,
region: VertexAiRegion = "us-central1",
model_publisher: Literal["google"] = "google",
http_client: AsyncClient | None = None,
url_template: str = VERTEX_AI_URL_TEMPLATE
)
Initialize a Vertex AI Gemini model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_name
|
GeminiModelName
|
The name of the model to use. I couldn't find a list of supported Google models, in VertexAI so for now this uses the same models as the Gemini model. |
required |
service_account_file
|
Path | str | None
|
Path to a service account file. If not provided, the default environment credentials will be used. |
None
|
project_id
|
str | None
|
The project ID to use, if not provided it will be taken from the credentials. |
None
|
region
|
VertexAiRegion
|
The region to make requests to. |
'us-central1'
|
model_publisher
|
Literal['google']
|
The model publisher to use, I couldn't find a good list of available publishers,
and from trial and error it seems non-google models don't work with the |
'google'
|
http_client
|
AsyncClient | None
|
An existing |
None
|
url_template
|
str
|
URL template for Vertex AI, see
|
VERTEX_AI_URL_TEMPLATE
|
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
VertexAiRegion
module-attribute
VertexAiRegion = Literal[
"us-central1",
"us-east1",
"us-east4",
"us-south1",
"us-west1",
"us-west2",
"us-west3",
"us-west4",
"us-east5",
"europe-central2",
"europe-north1",
"europe-southwest1",
"europe-west1",
"europe-west2",
"europe-west3",
"europe-west4",
"europe-west6",
"europe-west8",
"europe-west9",
"europe-west12",
"africa-south1",
"asia-east1",
"asia-east2",
"asia-northeast1",
"asia-northeast2",
"asia-northeast3",
"asia-south1",
"asia-southeast1",
"asia-southeast2",
"australia-southeast1",
"australia-southeast2",
"me-central1",
"me-central2",
"me-west1",
"northamerica-northeast1",
"northamerica-northeast2",
"southamerica-east1",
"southamerica-west1",
]
Regions available for Vertex AI.
More details here.