| Name | Type | Description |
|---|---|---|
api_url* | str | The URL of the Zep API. |
collection_name* | str | The name of the collection in the Zep store. |
api_key | Optional[str] | Default: NoneThe API key for the Zep API. |
config | Optional[CollectionConfig] | Default: None |
embedding | Optional[Embeddings] | Default: None |
| Name | Type |
|---|---|
| collection_name | str |
| api_url | str |
| api_key | Optional[str] |
| config | Optional[CollectionConfig] |
| embedding | Optional[Embeddings] |
Zep vector store.
It provides methods for adding texts or documents to the store, searching for similar documents, and deleting documents.
Search scores are calculated using cosine similarity normalized to [0, 1].
The configuration for the collection. Required if the collection does not already exist.
Optional embedding function to use to embed the texts. Required if the collection is not auto-embedded.