Skip to main content
在 GitHub 上打开

Aerospike

Aerospike 是一种高性能的分布式数据库,以其速度和可扩展性而闻名,现在支持向量存储和搜索,支持检索和搜索用于机器学习和 AI 应用的嵌入向量。 请在此处查看 Aerospike Vector Search (AVS) 的文档。

安装和设置

安装 AVS Python SDK 和 AVS langchain 矢量存储:

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/).