From 1581857e3d4df2bf569e1eb0c56c0a0c11f7881b Mon Sep 17 00:00:00 2001 From: dwelch-spike <53876192+dwelch-spike@users.noreply.github.com> Date: Thu, 5 Dec 2024 09:29:00 -0800 Subject: [PATCH] docs: add Aerospike to providers list (#28066) **Description:** Adds Aerospike to the list of langchain providers and points users to documentation for the vector store and Python SDK. If no one reviews your PR within a few days, please @-mention one of baskaryan, efriis, eyurtsev, ccurme, vbarda, hwchase17. --------- Co-authored-by: Erick Friis Co-authored-by: Erick Friis --- .../docs/integrations/providers/aerospike.mdx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/docs/integrations/providers/aerospike.mdx diff --git a/docs/docs/integrations/providers/aerospike.mdx b/docs/docs/integrations/providers/aerospike.mdx new file mode 100644 index 0000000000000..9dfbaa68091de --- /dev/null +++ b/docs/docs/integrations/providers/aerospike.mdx @@ -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://python.langchain.com/api_reference/community/vectorstores/langchain_community.vectorstores.aerospike.Aerospike.html). + +## Vector Store + +To import this vectorstore: + +```python +from langchain_community.vectorstores import Aerospike + +See a usage example [here](https://python.langchain.com/docs/integrations/vectorstores/aerospike/). +