EcosystemLangChain

ZepVectorStore

You can find a complete Vector Store Example that showcases how to use the ZepVectorStore class in the chain.

LangChain offers a ZepVectorStore class compatible with LangChain Expression Language (LCEL).

It expects the following initialization parameters:

collection_name The name of the collection in the Zep Store.

description The description of the collection.

metadata The metadata to associate with the collection.

api_key Zep Project API Key.

Initialization Example
1vectorstore = ZepVectorStore(
2 collection_name=ZEP_COLLECTION_NAME,
3 api_key=process.env.ZEP_API_KEY,
4)