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 GeminiModel
, it relies on the VertexAI
generateContent
and
streamGenerateContent
function endpoints
having the same schemas as the equivalent Gemini endpoints.
Setup
For details on how to set up authentication with this model as well as a comparison with the generativelanguage.googleapis.com
API used by GeminiModel
,
see model configuration for Gemini via VertexAI.
Example Usage
With the default google project already configured in your environment using "application default credentials":
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
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 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 |
|
__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
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
BearerTokenAuth
dataclass
Authentication using a bearer token generated by google-auth.
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
|
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.