跳至主要内容

Infinispan

Infinispan 是一个开源的键值数据网格,它可以作为单节点以及分布式运行。

从 15.x 版本开始支持向量搜索,更多信息:Infinispan 主页

# Ensure that all we need is installed
# You may want to skip this
%pip install sentence-transformers
%pip install langchain
%pip install langchain_core
%pip install langchain_community

设置

要运行此演示,我们需要一个没有身份验证的运行的 Infinispan 实例和一个数据文件。在接下来的三个单元格中,我们将

  • 下载数据文件
  • 创建配置
  • 在 docker 中运行 Infinispan
%%bash
#get an archive of news
wget https://raw.githubusercontent.com/rigazilla/infinispan-vector/main/bbc_news.csv.gz
%%bash
#create infinispan configuration file
echo 'infinispan:
cache-container:
name: default
transport:
cluster: cluster
stack: tcp
server:
interfaces:
interface:
name: public
inet-address:
value: 0.0.0.0
socket-bindings:
default-interface: public
port-offset: 0
socket-binding:
name: default
port: 11222
endpoints:
endpoint:
socket-binding: default
rest-connector:
' > infinispan-noauth.yaml
!docker rm --force infinispanvs-demo
!docker run -d --name infinispanvs-demo -v $(pwd):/user-config -p 11222:11222 infinispan/server:15.0 -c /user-config/infinispan-noauth.yaml

代码

选择嵌入模型

在这个演示中,我们使用了一个 HuggingFace 嵌入模式。

from langchain_core.embeddings import Embeddings
from langchain_huggingface import HuggingFaceEmbeddings

model_name = "sentence-transformers/all-MiniLM-L12-v2"
hf = HuggingFaceEmbeddings(model_name=model_name)

设置 Infinispan 缓存

Infinispan 是一个非常灵活的键值存储,它可以存储原始位以及复杂数据类型。用户在数据网格配置方面拥有完全的自由,但对于简单数据类型,所有内容都会由 Python 层自动配置。我们利用了这个特性,这样我们就可以专注于我们的应用程序。

准备数据

在这个演示中,我们依赖于默认配置,因此文本、元数据和向量在同一个缓存中,但其他选项也是可能的:例如,内容可以存储在其他地方,向量存储可以只包含对实际内容的引用。

import csv
import gzip
import time

# Open the news file and process it as a csv
with gzip.open("bbc_news.csv.gz", "rt", newline="") as csvfile:
spamreader = csv.reader(csvfile, delimiter=",", quotechar='"')
i = 0
texts = []
metas = []
embeds = []
for row in spamreader:
# first and fifth values are joined to form the content
# to be processed
text = row[0] + "." + row[4]
texts.append(text)
# Store text and title as metadata
meta = {"text": row[4], "title": row[0]}
metas.append(meta)
i = i + 1
# Change this to change the number of news you want to load
if i >= 5000:
break

填充向量存储

# add texts and fill vector db

from langchain_community.vectorstores import InfinispanVS

ispnvs = InfinispanVS.from_texts(texts, hf, metas)
API 参考:InfinispanVS

一个用于打印结果文档的帮助函数

默认情况下,InfinispanVS 在 Document.page_content 中返回 protobuf ŧext 字段,并在 metadata 中返回所有剩余的 protobuf 字段(除了向量)。此行为可以通过设置时的 lambda 函数进行配置。

def print_docs(docs):
for res, i in zip(docs, range(len(docs))):
print("----" + str(i + 1) + "----")
print("TITLE: " + res.metadata["title"])
print(res.page_content)

试试吧!!!

下面是一些示例查询

docs = ispnvs.similarity_search("European nations", 5)
print_docs(docs)
print_docs(ispnvs.similarity_search("Milan fashion week begins", 2))
print_docs(ispnvs.similarity_search("Stock market is rising today", 4))
print_docs(ispnvs.similarity_search("Why cats are so viral?", 2))
print_docs(ispnvs.similarity_search("How to stay young", 5))
!docker rm --force infinispanvs-demo

此页面是否有帮助?


您也可以在 GitHub 上留下详细的反馈 关于.