📦Chromadb
Chromadb
This is the default database used when no vectordb is specified . We create a temp directory and persist the embeddings there using the PersistentClient of Chromadb by default.
This is for experimentation purposes when the user wants a quick headstart and wants to experiment with things quickly.
Compulsory arguments:
class_name => The name of the index under which documents are stored
Here are some sample configurations:
=> Chromadb with embedding specification
==> Chromadb without embedding specification. Without any embedding specification we use the default embedding which is HuggingFaceEmbeddings
Python Usage:
Last updated