The Zep Collection node is a vector store implementation using Zep, an open-source platform for building LLM apps. It allows for upsert of embedded data and performing similarity or MMR (Maximal Marginal Relevance) search upon query.
The Zep_VectorStores node provides two main functionalities:
Upsert: Allows adding new documents to the Zep collection. It processes the input documents, applies the specified embeddings, and stores them in the Zep vector store.
Similarity Search: Enables querying the vector store for similar documents. It supports both standard similarity search and MMR search for diverse results.
Building knowledge bases or document retrieval systems
Implementing semantic search functionality in applications
Creating question-answering systems with context retrieval
The node can be integrated into larger workflows where document storage, retrieval, and similarity search are required, making it a versatile component for various LLM-powered applications.