微信扫码
与创始人交个朋友
我要投稿
在我们上一篇关于 Neo4j GraphRAG Python 包的公号文章中,我们介绍了如何使用该包构建一个基本的 GraphRAG 应用程序。在本篇及后续的文章中,我们将深入探讨该包的功能,并展示如何通过使用其他包含的检索器来进一步自定义和改进您的应用程序。在这里,我们将演示如何使用 Cypher 查询扩展上一篇文章中使用的向量搜索方法,通过添加图遍历作为额外的步骤。
我们将使用与上一篇公号文章中相同的预配置 Neo4j 演示数据库。该数据库模拟了一个电影推荐知识图谱。(有关数据库的更多详细信息,请参阅上一篇公号文章的“设置”部分。)
您可以通过浏览器访问数据库,网址为 https://demo.neo4jlabs.com:7473/browser/,用户名和密码均为“recommendations”。使用以下代码片段连接到您的应用程序中的数据库:
from neo4j import GraphDatabase
URI = "neo4j+s://demo.neo4jlabs.com"
AUTH = ("recommendations", "recommendations")
driver = GraphDatabase.driver(URI, auth=AUTH)
另外,请确保导出您的 OpenAI 密钥:
import os
os.environ["OPENAI_API_KEY"] = "sk-…"
在 Neo4j 网页界面中运行以下命令,以可视化电影 “Tom and Huck” 及其与其他节点的直接关系:
MATCH (m:Movie {title: 'Tom and Huck'})-[r]-(n) RETURN *;
请注意,我们现在可以看到电影的类型、出演的演员以及其他未包含在 Movie 节点中的有用信息。
在上一篇文章中,我们使用了电影情节嵌入和向量检索器来检索与用户查询最相似的电影节点。这些电影节点作为大语言模型(LLM)生成答案的上下文。然而,在这种设置中,只有电影节点本身包含的信息可以作为上下文,连接到未使用的电影节点的其他节点中的附加信息没有被利用。因此,如果用户询问有关电影类型或主演演员的问题,LLM 将无法获得适当的上下文来回答这些问题。
幸运的是,我们可以使用 VectorCypherRetriever
类来检索这些附加信息。该检索器首先使用向量搜索从知识图谱中检索初始一系列节点,然后使用 Cypher 查询从这些初始节点遍历图谱,收集与它们连接的节点中的附加信息。
要使用此检索器,我们首先需要编写 Cypher 查询,以指定与通过向量搜索检索到的节点一起获取的确切附加信息。例如,要与电影节点一起检索演员信息,我们可以使用以下查询:
retrieval_query = """
MATCH
(actor:Actor)-[:ACTED_IN]->(node)
RETURN
node.title AS movie_title,
node.plot AS movie_plot,
collect(actor.name) AS actors;
"""
此查询中的 node
变量是对通过初始向量搜索步骤检索到的节点的引用,这里是电影节点。此查询查找出演每部电影的所有演员,并返回他们的名字以及电影的标题和情节。
然后,我们将此查询传递给 VectorCypherRetriever
,并传递与上一篇文章中传递给 VectorRetriever
的相同信息,例如向量索引的名称和嵌入:
from neo4j importGraphDatabase
from neo4j_graphrag.embeddings.openai importOpenAIEmbeddings
from neo4j_graphrag.retrievers importVectorCypherRetriever
driver =GraphDatabase.driver(URI, auth=AUTH)
embedder =OpenAIEmbeddings(model="text-embedding-ada-002")
vc_retriever =VectorCypherRetriever(
driver,
index_name="moviePlotsEmbedding",
embedder=embedder,
retrieval_query=retrieval_query,
)
同样,我们使用 text-embedding-ada-002
模型作为演示数据库中的电影情节嵌入,该嵌入最初是使用该模型生成的。
现在我们可以使用我们的检索器来搜索数据库中的电影及其主演演员的信息:
query_text = "Who were the actors in the movie about the magic jungle board game?"
retriever_result = retriever.search(query_text=query_text, top_k=3)
items=[
RetrieverResultItem(content="<Record
movie_title='Jumanji'
movie_plot='When two kids find and play a magical board game, they release a man trapped for decades in it and a host of dangers that can only be stopped by finishing the game.'
actors=['Robin Williams', 'Bradley Pierce', 'Kirsten Dunst', 'Jonathan Hyde']",
metadata=None),
RetrieverResultItem(content="<Record
movie_title='Welcome to the Jungle'
movie_plot='A company retreat on a tropical island goes terribly awry.'
actors=['Jean-Claude Van Damme', 'Adam Brody', 'Rob Huebel', 'Kristen Schaal']",
metadata=None),
RetrieverResultItem(content='<Record
movie_title=\'Last Mimzy, The\'
movie_plot=\'Two siblings begin to develop special talents after they find a mysterious box of toys. Soon the kids, their parents, and even their teacher are drawn into a strange new world and find a task ahead of them that is far more important than any of them could imagine!\'
actors=[\'Joely Richardson\', \'Rhiannon Leigh Wryn\', \'Timothy Hutton\', "Chris O\'Neil"]',
metadata=None)
]
metadata={'__retriever':'VectorCypherRetriever'}
请注意,我们已经检索到了每部电影的演员以及其标题和情节。使用 VectorRetriever
,我们只能检索到标题和情节,而演员信息存储在连接到每个电影节点的演员节点中,因此无法检索到。
要构建一个完整的 GraphRAG 管道,我们只需将上一篇文章中使用的 VectorRetriever
替换为我们的 VectorCypherRetriever
:
from neo4j_graphrag.llm importOpenAILLM
from neo4j_graphrag.generation importGraphRAG
llm =OpenAILLM(model_name="gpt-4o", model_params={"temperature":0})
rag =GraphRAG(retriever=vc_retriever, llm=llm)
query_text ="Who were the actors in the movie about the magic jungle board game?"
response = rag.search(query=query_text, retriever_config={"top_k":3})
print(response.answer)
这将返回以下响应:
电影 “Jumanji”,关于一个神奇的棋盘游戏,主演演员包括 Robin Williams、Bradley Pierce、Kirsten Dunst 和 Jonathan Hyde。
在本篇文章中,我们演示了如何使用 Neo4j GraphRAG Python 包中的 VectorCypherRetriever
类构建一个简单的 GraphRAG 应用程序。我们展示了该强大的类如何在初始向量检索步骤之外,结合图遍历步骤,从图中获取无法通过向量检索获取的信息。随后我们展示了如何使 LLM 回答关于我们电影数据库的某些问题,而这些问题使用 VectorRetriever
类是无法回答的。
53AI,企业落地应用大模型首选服务商
产品:大模型应用平台+智能体定制开发+落地咨询服务
承诺:先做场景POC验证,看到效果再签署服务协议。零风险落地应用大模型,已交付160+中大型企业
2024-11-15
利用LLM构建非结构化文本的知识图谱
2024-11-13
GraphRAG:基于PolarDB+通义千问+LangChain的知识图谱+大模型最佳实践
2024-11-13
利用LLM Graph Transformer实现知识图谱的高效构建
2024-11-12
什么是知识图谱和AI多模态推理
2024-11-12
Graph Maker:轻松使用开源大模型将文本转为知识图谱,发现新知识!
2024-11-11
iText2KG:使用LLM构建增量知识图谱(KG)
2024-11-08
NebulaGraph 在中医药领域的应用:构建鼻炎知识图谱
2024-11-07
轻松搭建AI版“谁是卧底”游戏,muAgent框架让知识图谱秒变编排引擎,支持复杂推理+在线协同
2024-07-17
2024-07-11
2024-07-13
2024-08-13
2024-07-08
2024-07-12
2024-07-26
2024-07-04
2024-06-10
2024-06-24
2024-11-04
2024-10-10
2024-10-03
2024-09-27
2024-09-08
2024-09-05
2024-08-27
2024-08-24