You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/ecosystem/atlas.md

990 B

AtlasDB

This page covers how to use Nomic's Atlas ecosystem within LangChain. It is broken into two parts: installation and setup, and then references to specific Atlas wrappers.

Installation and Setup

  • Install the Python package with pip install nomic
  • Nomic is also included in langchains poetry extras poetry install -E all

Wrappers

VectorStore

There exists a wrapper around the Atlas neural database, allowing you to use it as a vectorstore. This vectorstore also gives you full access to the underlying AtlasProject object, which will allow you to use the full range of Atlas map interactions, such as bulk tagging and automatic topic modeling. Please see the Atlas docs for more detailed information.

To import this vectorstore:

from langchain.vectorstores import AtlasDB

For a more detailed walkthrough of the AtlasDB wrapper, see this notebook