GPT4All Python SDK Reference
GPT4All
Python class that handles instantiation, downloading, generation and chat with GPT4All models.
Source code in gpt4all/gpt4all.py
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 321 322 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 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 |
|
backend: Literal['cpu', 'kompute', 'cuda', 'metal']
property
The name of the llama.cpp backend currently in use. One of "cpu", "kompute", "cuda", or "metal".
device: str | None
property
The name of the GPU device currently in use, or None for backends other than Kompute or CUDA.
__init__(model_name, *, model_path=None, model_type=None, allow_download=True, n_threads=None, device=None, n_ctx=2048, ngl=100, verbose=False)
Constructor
Parameters:
-
model_name
(str
) –Name of GPT4All or custom model. Including ".gguf" file extension is optional but encouraged.
-
model_path
(str | PathLike[str] | None
, default:None
) –Path to directory containing model file or, if file does not exist, where to download model. Default is None, in which case models will be stored in
~/.cache/gpt4all/
. -
model_type
(str | None
, default:None
) –Model architecture. This argument currently does not have any functionality and is just used as descriptive identifier for user. Default is None.
-
allow_download
(bool
, default:True
) –Allow API to download models from gpt4all.io. Default is True.
-
n_threads
(int | None
, default:None
) –number of CPU threads used by GPT4All. Default is None, then the number of threads are determined automatically.
-
device
(str | None
, default:None
) –The processing unit on which the GPT4All model will run. It can be set to: - "cpu": Model will run on the central processing unit. - "gpu": Use Metal on ARM64 macOS, otherwise the same as "kompute". - "kompute": Use the best GPU provided by the Kompute backend. - "cuda": Use the best GPU provided by the CUDA backend. - "amd", "nvidia": Use the best GPU provided by the Kompute backend from this vendor. - A specific device name from the list returned by
GPT4All.list_gpus()
. Default is Metal on ARM64 macOS, "cpu" otherwise.Note: If a selected GPU device does not have sufficient RAM to accommodate the model, an error will be thrown, and the GPT4All instance will be rendered invalid. It's advised to ensure the device has enough memory before initiating the model.
-
n_ctx
(int
, default:2048
) –Maximum size of context window
-
ngl
(int
, default:100
) –Number of GPU layers to use (Vulkan)
-
verbose
(bool
, default:False
) –If True, print debug messages.
Source code in gpt4all/gpt4all.py
chat_session(system_prompt=None, prompt_template=None)
Context manager to hold an inference optimized chat session with a GPT4All model.
Parameters:
-
system_prompt
(str | None
, default:None
) –An initial instruction for the model.
-
prompt_template
(str | None
, default:None
) –Template for the prompts with {0} being replaced by the user message.
Source code in gpt4all/gpt4all.py
close()
download_model(model_filename, model_path, verbose=True, url=None, expected_size=None, expected_md5=None)
staticmethod
Download model from gpt4all.io.
Parameters:
-
model_filename
(str
) –Filename of model (with .gguf extension).
-
model_path
(str | PathLike[str]
) –Path to download model to.
-
verbose
(bool
, default:True
) –If True (default), print debug messages.
-
url
(str | None
, default:None
) –the models remote url (e.g. may be hosted on HF)
-
expected_size
(int | None
, default:None
) –The expected size of the download.
-
expected_md5
(str | None
, default:None
) –The expected MD5 hash of the download.
Returns:
-
str | PathLike[str]
–Model file destination.
Source code in gpt4all/gpt4all.py
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 |
|
generate(prompt, *, max_tokens=200, temp=0.7, top_k=40, top_p=0.4, min_p=0.0, repeat_penalty=1.18, repeat_last_n=64, n_batch=8, n_predict=None, streaming=False, callback=empty_response_callback)
Generate outputs from any GPT4All model.
Parameters:
-
prompt
(str
) –The prompt for the model to complete.
-
max_tokens
(int
, default:200
) –The maximum number of tokens to generate.
-
temp
(float
, default:0.7
) –The model temperature. Larger values increase creativity but decrease factuality.
-
top_k
(int
, default:40
) –Randomly sample from the top_k most likely tokens at each generation step. Set this to 1 for greedy decoding.
-
top_p
(float
, default:0.4
) –Randomly sample at each generation step from the top most likely tokens whose probabilities add up to top_p.
-
min_p
(float
, default:0.0
) –Randomly sample at each generation step from the top most likely tokens whose probabilities are at least min_p.
-
repeat_penalty
(float
, default:1.18
) –Penalize the model for repetition. Higher values result in less repetition.
-
repeat_last_n
(int
, default:64
) –How far in the models generation history to apply the repeat penalty.
-
n_batch
(int
, default:8
) –Number of prompt tokens processed in parallel. Larger values decrease latency but increase resource requirements.
-
n_predict
(int | None
, default:None
) –Equivalent to max_tokens, exists for backwards compatibility.
-
streaming
(bool
, default:False
) –If True, this method will instead return a generator that yields tokens as the model generates them.
-
callback
(ResponseCallbackType
, default:empty_response_callback
) –A function with arguments token_id:int and response:str, which receives the tokens from the model as they are generated and stops the generation by returning False.
Returns:
-
Any
–Either the entire completion or a generator that yields the completion token by token.
Source code in gpt4all/gpt4all.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 |
|
list_gpus()
staticmethod
List the names of the available GPU devices.
Returns:
-
list[str]
–A list of strings representing the names of the available GPU devices.
list_models()
staticmethod
Fetch model list from https://gpt4all.io/models/models3.json.
Returns:
-
list[ConfigType]
–Model list in JSON format.
Source code in gpt4all/gpt4all.py
retrieve_model(model_name, model_path=None, allow_download=True, verbose=False)
classmethod
Find model file, and if it doesn't exist, download the model.
Parameters:
-
model_name
(str
) –Name of model.
-
model_path
(str | PathLike[str] | None
, default:None
) –Path to find model. Default is None in which case path is set to ~/.cache/gpt4all/.
-
allow_download
(bool
, default:True
) –Allow API to download model from gpt4all.io. Default is True.
-
verbose
(bool
, default:False
) –If True (default), print debug messages.
Returns:
-
ConfigType
–Model config.
Source code in gpt4all/gpt4all.py
Embed4All
Python class that handles embeddings for GPT4All.
Source code in gpt4all/gpt4all.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 |
|
__init__(model_name=None, *, n_threads=None, device=None, **kwargs)
Constructor
Parameters:
-
n_threads
(int | None
, default:None
) –number of CPU threads used by GPT4All. Default is None, then the number of threads are determined automatically.
-
device
(str | None
, default:None
) –The processing unit on which the embedding model will run. See the
GPT4All
constructor for more info. -
kwargs
(Any
, default:{}
) –Remaining keyword arguments are passed to the
GPT4All
constructor.
Source code in gpt4all/gpt4all.py
close()
embed(text, *, prefix=None, dimensionality=None, long_text_mode='mean', return_dict=False, atlas=False, cancel_cb=None)
Generate one or more embeddings.
Parameters:
-
text
(str | list[str]
) –A text or list of texts to generate embeddings for.
-
prefix
(str | None
, default:None
) –The model-specific prefix representing the embedding task, without the trailing colon. For Nomic Embed, this can be
search_query
,search_document
,classification
, orclustering
. Defaults tosearch_document
or equivalent if known; otherwise, you must explicitly pass a prefix or an empty string if none applies. -
dimensionality
(int | None
, default:None
) –The embedding dimension, for use with Matryoshka-capable models. Defaults to full-size.
-
long_text_mode
(str
, default:'mean'
) –How to handle texts longer than the model can accept. One of
mean
ortruncate
. -
return_dict
(bool
, default:False
) –Return the result as a dict that includes the number of prompt tokens processed.
-
atlas
(bool
, default:False
) –Try to be fully compatible with the Atlas API. Currently, this means texts longer than 8192 tokens with long_text_mode="mean" will raise an error. Disabled by default.
-
cancel_cb
(EmbCancelCallbackType | None
, default:None
) –Called with arguments (batch_sizes, backend_name). Return true to cancel embedding.
Returns:
-
Any
–With return_dict=False, an embedding or list of embeddings of your text(s).
-
Any
–With return_dict=True, a dict with keys 'embeddings' and 'n_prompt_tokens'.
Raises:
-
CancellationError
–If cancel_cb returned True and embedding was canceled.