gpt4all: an ecosystem of open-source chatbots trained on a massive collections of clean assistant data including code, stories and dialogue
Go to file
John W. Parent 4c26726f3e
MacOS Build Online: no offline on (#2509)
Signed-off-by: John Parent <john.parent@kitware.com>
2024-07-01 20:03:00 -04:00
.circleci MacOS Build Online: no offline on (#2509) 2024-07-01 20:03:00 -04:00
.github ci: update checkout action to v4 in codespell workflow (#2414) 2024-06-05 11:34:51 -04:00
gpt4all-backend backend: fix a crash on inputs greater than n_ctx (#2498) 2024-07-01 11:33:46 -04:00
gpt4all-bindings docs: bump copyright year and change site_description (#2502) 2024-07-01 14:34:07 -04:00
gpt4all-chat remove console.logs from last PR 2024-07-01 18:30:19 -04:00
gpt4all-training llamamodel: fix BERT tokenization after llama.cpp update (#2381) 2024-05-28 13:11:57 -04:00
.codespellrc make codespell happy again (#1574) 2023-10-26 10:07:06 -04:00
.gitignore Update .gitignore and Dockerfile, add .env file 2023-11-21 10:46:51 -05:00
.gitmodules chat: fix build on Windows and Nomic Embed path on macOS (#2467) 2024-06-25 17:22:51 -04:00
CONTRIBUTING.md [DATALAD RUNCMD] run codespell throughout 2023-05-16 11:33:59 -04:00
gpt4all-lora-demo.gif GIF 2023-03-28 15:54:44 -04:00
LICENSE.txt Add MIT license. 2023-04-06 11:28:59 -04:00
README.md V3 docs max (#2488) 2024-07-01 13:00:14 -04:00
roadmap.md V3 docs max (#2488) 2024-07-01 13:00:14 -04:00

GPT4All

GPT4All runs large language models (LLMs) privately on everyday desktops & laptops.

No API calls or GPUs required - you can just download the application and get started


Download for Windows


Download for MacOS


Download for Linux

WebsiteDocumentationDiscord

Subscribe to the newsletter

GPT4All is made possible by our compute partner Paperspace.

phorm.ai

Install GPT4All Python

gpt4all gives you access to LLMs with our Python client around llama.cpp implementations.

Nomic contributes to open source software like llama.cpp to make LLMs accessible and efficient for all.

pip install gpt4all
from gpt4all import GPT4All
model = GPT4All("Meta-Llama-3-8B-Instruct.Q4_0.gguf") # downloads / loads a 4.66GB LLM
with model.chat_session():
    print(model.generate("How can I run LLMs efficiently on my laptop?", max_tokens=1024))

Release History

  • July 2nd, 2024: V3.0.0 Release
    • New UI/UX: fresh redesign of the chat application GUI and user experience
    • LocalDocs: bring information from files on-device into chats
  • October 19th, 2023: GGUF Support Launches with Support for:
    • Mistral 7b base model, an updated model gallery on gpt4all.io, several new local code models including Rift Coder v1.5
    • Nomic Vulkan support for Q4_0 and Q4_1 quantizations in GGUF.
    • Offline build support for running old versions of the GPT4All Local LLM Chat Client.
  • September 18th, 2023: Nomic Vulkan launches supporting local LLM inference on NVIDIA and AMD GPUs.
  • July 2023: Stable support for LocalDocs, a feature that allows you to privately and locally chat with your data.
  • June 28th, 2023: Docker-based API server launches allowing inference of local LLMs from an OpenAI-compatible HTTP endpoint.

Integrations

Contributing

GPT4All welcomes contributions, involvement, and discussion from the open source community! Please see CONTRIBUTING.md and follow the issues, bug reports, and PR markdown templates.

Check project discord, with project owners, or through existing issues/PRs to avoid duplicate work. Please make sure to tag all of the above with relevant project identifiers or your contribution could potentially get lost. Example tags: backend, bindings, python-bindings, documentation, etc.

Technical Reports

📗 Technical Report 3: GPT4All Snoozy and Groovy

📗 Technical Report 2: GPT4All-J

📗 Technical Report 1: GPT4All

Citation

If you utilize this repository, models or data in a downstream project, please consider citing it with:

@misc{gpt4all,
  author = {Yuvanesh Anand and Zach Nussbaum and Brandon Duderstadt and Benjamin Schmidt and Andriy Mulyar},
  title = {GPT4All: Training an Assistant-style Chatbot with Large Scale Data Distillation from GPT-3.5-Turbo},
  year = {2023},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/nomic-ai/gpt4all}},
}