Compare commits

..

2 Commits

Author SHA1 Message Date
Andriy Mulyar
b6e38d69ed
Python version bump
Signed-off-by: Andriy Mulyar <andriy.mulyar@gmail.com>
2023-09-01 13:21:41 -04:00
Andriy Mulyar
707b91a24f
Update Python bindings README.md (#1389)
Signed-off-by: Andriy Mulyar <andriy.mulyar@gmail.com>
2023-09-01 13:01:40 -04:00
2 changed files with 12 additions and 3 deletions

View File

@ -47,6 +47,15 @@ output = model.generate("The capital of France is ", max_tokens=3)
print(output) print(output)
``` ```
GPU Usage
```python
from gpt4all import GPT4All
model = GPT4All("orca-mini-3b.ggmlv3.q4_0.bin", device='gpu') # device='amd', device='intel'
output = model.generate("The capital of France is ", max_tokens=3)
print(output)
```
## Troubleshooting a Local Build ## Troubleshooting a Local Build
- If you're on Windows and have compiled with a MinGW toolchain, you might run into an error like: - If you're on Windows and have compiled with a MinGW toolchain, you might run into an error like:
``` ```

View File

@ -61,10 +61,10 @@ copy_prebuilt_C_lib(SRC_CLIB_DIRECtORY,
setup( setup(
name=package_name, name=package_name,
version="1.0.8", version="1.0.9",
description="Python bindings for GPT4All", description="Python bindings for GPT4All",
author="Richard Guo", author="Nomic and the Open Source Community",
author_email="richard@nomic.ai", author_email="support@nomic.ai",
url="https://pypi.org/project/gpt4all/", url="https://pypi.org/project/gpt4all/",
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",