vertexai
VertexAIEndpointLLM
¶
Bases: LLM
An LLM
which uses a Vertex AI Online prediction endpoint for the generation.
More information about Vertex AI Endpoints can be found here:
- https://cloud.google.com/vertex-ai/docs/general/deployment#deploy_a_model_to_an_endpoint
Source code in src/distilabel/llm/google/vertexai.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|
endpoint_path: str
property
¶
Returns the path of the Vertex AI endpoint to be used for generation.
model_name: str
cached
property
¶
Returns the name of the model used for generation.
__init__(task, endpoint_id, project=None, location='us-central1', generation_kwargs=None, prompt_argument='prompt', num_generations_argument='n', num_threads=None, prompt_format=None, prompt_formatting_fn=None)
¶
Initializes the VertexAIEndpointLLM
class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task |
Task
|
the task to be performed by the LLM. |
required |
endpoint_id |
str
|
the ID of the Vertex AI endpoint to be used for generation. |
required |
project |
Optional[str]
|
the project to be used for generation. If |
None
|
location |
str
|
the location of the Vertex AI endpoint to be used for generation. Defaults to "us-central1". |
'us-central1'
|
generation_kwargs |
Optional[Dict[str, Any]]
|
the generation parameters
to be used for generation. The name of the parameters will depend on the
Docker image used to deploy the model to the Vertex AI endpoint. Defaults
to |
None
|
prompt_argument |
str
|
the name of the Vertex AI Endpoint key to be used for the prompt. Defaults to "prompt". |
'prompt'
|
num_generations_argument |
str
|
the name of the Vertex AI Endpoint key to be used to specify the number of generations per prompt. Defaults to "n". |
'n'
|
num_threads |
Union[int, None]
|
the number of threads to be used
for parallel generation. If |
None
|
prompt_format |
Union[SupportedFormats, None]
|
the format to be used
for the prompt. If |
None
|
prompt_formatting_fn |
Union[Callable[..., str], None]
|
a function to be
applied to the prompt before generation. If |
None
|
Source code in src/distilabel/llm/google/vertexai.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
VertexAILLM
¶
Bases: LLM
An LLM
which allows to use Google's proprietary models from the Vertex AI APIs:
- Gemini API: https://cloud.google.com/vertex-ai/docs/generative-ai/model-reference/gemini
- Codey API: https://cloud.google.com/vertex-ai/docs/generative-ai/code/code-models-overview
- Text API: https://cloud.google.com/vertex-ai/docs/generative-ai/model-reference/text
To use the VertexAILLM
is necessary to have configured the Google Cloud authentication
using one of these methods:
- Setting
GOOGLE_CLOUD_CREDENTIALS
environment variable - Using
gcloud auth application-default login
command - Using
vertexai.init
function from thegoogle-cloud-aiplatform
library
Source code in src/distilabel/llm/google/vertexai.py
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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
model_name: str
property
¶
Returns the name of the model used for generation.
__init__(task, model='gemini-pro', temperature=None, top_p=None, top_k=None, max_new_tokens=128, stop_sequences=None, num_threads=None)
¶
Initializes the VertexGenerativeModelLLM
class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task |
Task
|
the task to be performed by the LLM. |
required |
model |
str
|
the model to be used for generation. Defaults to "gemini-pro". |
'gemini-pro'
|
temperature |
float
|
the temperature to be used for generation. Defaults to 1.0. |
None
|
top_p |
float
|
the top-p value to be used for generation. Defaults to 1.0. |
None
|
top_k |
int
|
the top-k value to be used for generation. Defaults to 40. |
None
|
max_new_tokens |
int
|
the maximum number of tokens to be generated. Defaults to 128. |
128
|
num_threads |
Union[int, None]
|
the number of threads to be used
for parallel generation. If |
None
|
Source code in src/distilabel/llm/google/vertexai.py
is_codey_model(model)
¶
Returns True
if the model is a model from the Vertex AI Codey API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
str
|
the model name to be checked. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
|
Source code in src/distilabel/llm/google/vertexai.py
is_gemini_model(model)
¶
Returns True
if the model is a model from the Vertex AI Gemini API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
str
|
the model name to be checked. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
|