From e2c770de3181e89b055b12ac95f9bce291c70948 Mon Sep 17 00:00:00 2001 From: dylan Date: Tue, 12 Nov 2024 12:57:04 -0800 Subject: [PATCH 1/3] docs: add Aerospike to providers list --- .../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..e671f9436c74e --- /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://api.python.langchain.com/en/latest/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://colab.research.google.com/github/aerospike/langchain/blob/master/docs/docs/integrations/vectorstores/aerospike.ipynb?authuser=1). + From a3fe2029baf7b7603bf28fc4bafb3eda0c62807a Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 3 Dec 2024 19:09:47 -0800 Subject: [PATCH 2/3] Update docs/docs/integrations/providers/aerospike.mdx --- docs/docs/integrations/providers/aerospike.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/providers/aerospike.mdx b/docs/docs/integrations/providers/aerospike.mdx index e671f9436c74e..63c8a37b1d018 100644 --- a/docs/docs/integrations/providers/aerospike.mdx +++ b/docs/docs/integrations/providers/aerospike.mdx @@ -11,7 +11,7 @@ Install the AVS Python SDK and AVS langchain vector store: 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). +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 From 8e7956208ce3c0339c1d72896e622c0a719c5eed Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 3 Dec 2024 19:09:52 -0800 Subject: [PATCH 3/3] Update docs/docs/integrations/providers/aerospike.mdx --- docs/docs/integrations/providers/aerospike.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/providers/aerospike.mdx b/docs/docs/integrations/providers/aerospike.mdx index 63c8a37b1d018..9dfbaa68091de 100644 --- a/docs/docs/integrations/providers/aerospike.mdx +++ b/docs/docs/integrations/providers/aerospike.mdx @@ -20,5 +20,5 @@ 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). +See a usage example [here](https://python.langchain.com/docs/integrations/vectorstores/aerospike/).