Skip to main content
Open on GitHub

Nomic

Nomic builds tools that enable everyone to interact with AI scale datasets and run AI models on consumer computers.

Nomic currently offers two products:

  • Atlas: the Visual Data Engine
  • GPT4All: the Open Source Edge Language Model Ecosystem

The Nomic integration exists in two partner packages: langchain-nomic and in langchain-community.

Installationโ€‹

You can install them with:

pip install -U langchain-nomic
pip install -U langchain-community

LLMsโ€‹

GPT4Allโ€‹

See a usage example.

from langchain_community.llms import GPT4All
API Reference:GPT4All

Embedding modelsโ€‹

NomicEmbeddingsโ€‹

See a usage example.

from langchain_nomic import NomicEmbeddings
API Reference:NomicEmbeddings

GPT4Allโ€‹

See a usage example.

from langchain_community.embeddings import GPT4AllEmbeddings
API Reference:GPT4AllEmbeddings

Vector storeโ€‹

Atlasโ€‹

See a usage example and installation instructions.

from langchain_community.vectorstores import AtlasDB
API Reference:AtlasDB

Was this page helpful?