Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add Aerospike to providers list #28066

Merged
merged 4 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/docs/integrations/providers/aerospike.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Aerospike

>[Aerospike](https://aerospike.com/docs/vector) is a high-performance, distributed database known for its speed and scalability, now with support for vector storage and search, enabling retrieval and search of embedding vectors for machine learning and AI applications.
> See the documentation for Aerospike Vector Search (AVS) [here](https://aerospike.com/docs/vector).

## Installation and Setup

Install the AVS Python SDK and AVS langchain vector store:

```bash
pip install aerospike-vector-search langchain-community

See the documentation for the Ptyhon SDK [here](https://aerospike-vector-search-python-client.readthedocs.io/en/latest/index.html).
The documentation for the AVS langchain vector store is [here](https://api.python.langchain.com/en/latest/community/vectorstores/langchain_community.vectorstores.aerospike.Aerospike.html).
efriis marked this conversation as resolved.
Show resolved Hide resolved

## Vector Store

To import this vectorstore:

```python
from langchain_community.vectorstores import Aerospike

See a usage example [here](https://colab.research.google.com/github/aerospike/langchain/blob/master/docs/docs/integrations/vectorstores/aerospike.ipynb?authuser=1).
efriis marked this conversation as resolved.
Show resolved Hide resolved

Loading