pydantic_ai.models.vertexai
Deprecated
The VertexAIModel is deprecated. You can use the
GoogleVertexProvider to authenticate with the Vertex AI API
and then use the GeminiModel to use the Gemini API.
Custom interface to the *-aiplatform.googleapis.com API for Gemini models.
This model inherits from GeminiModel with just the URL and auth method
changed, 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') # (1)!
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.
- The
VertexAIModelis deprecated, you should use theGeminiModelwith theGoogleVertexProviderinstead.
Or using a service account JSON file:
from pydantic_ai import Agent
from pydantic_ai.models.vertexai import VertexAIModel
model = VertexAIModel( # (1)!
'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.
- The
VertexAIModelis deprecated, you should use theGeminiModelwith theGoogleVertexProviderinstead.
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:
regionis substituted with theregionargument, see available regionsmodel_publisheris substituted with themodel_publisherargumentmodelis substituted with themodel_nameargumentproject_idis substituted with theproject_idfrom auth/credentialsfunction(generateContentorstreamGenerateContent) is added to the end of the URL
VertexAIModel
dataclass
Bases: GeminiModel
A model that uses Gemini via the *-aiplatform.googleapis.com VertexAI API.
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |
__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
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 | |
ainit
async
ainit() -> None
Initialize the model, setting the URL and auth.
This will raise an error if authentication fails.
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
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 | |
BearerTokenAuth
dataclass
Authentication using a bearer token generated by google-auth.
Source code in pydantic_ai_slim/pydantic_ai/models/vertexai.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | |
VertexAiRegion
module-attribute
VertexAiRegion = Literal[
"asia-east1",
"asia-east2",
"asia-northeast1",
"asia-northeast3",
"asia-south1",
"asia-southeast1",
"australia-southeast1",
"europe-central2",
"europe-north1",
"europe-southwest1",
"europe-west1",
"europe-west2",
"europe-west3",
"europe-west4",
"europe-west6",
"europe-west8",
"europe-west9",
"me-central1",
"me-central2",
"me-west1",
"northamerica-northeast1",
"southamerica-east1",
"us-central1",
"us-east1",
"us-east4",
"us-east5",
"us-south1",
"us-west1",
"us-west4",
]
Regions available for Vertex AI.
More details here.