以编程方式使用文档

> Kùzu 是一个可嵌入的、可扩展的、极快的图数据库。 > 它采用宽松的 MIT 许可证授权,您可以查看其源代码 在 GitHub 上.

> Kùzu 的主要特点: > >- 性能和可扩展性:实现了现代化的先进图连接算法。 >- 易用性:设置和入门非常简便,因为没有服务器(嵌入式架构)。 >- 互操作性:可以方便地扫描和复制来自外部列式格式、CSV、JSON 和关系数据库的数据。 >- 结构化属性图模型:实现了属性图模型,并增加了额外的结构。 >- Cypher 支持:允许使用声明式查询语言 Cypher 方便地查询图。

> 要开始使用 Kùzu,请访问他们的 文档.

设置

Kùzu 是一个嵌入式数据库(它在进程内运行),因此没有服务器需要管理。安装 以下依赖项以开始使用:

pip install -U langchain-kuzu langchain-openai langchain-experimental

这会安装 Kùzu 以及相应的 LangChain 集成,以及 OpenAI Python 包 以便我们可以使用 OpenAI 的 LLM。如果您想使用其他 LLM 提供商,可以安装他们的 随 LangChain 提供的相应 Python 包。

以下是如何在本地计算机上首先创建 Kùzu 数据库并连接到它的方法:

db = kuzu.Database("test_db")
conn = kuzu.Connection(db)

创建 KuzuGraph

Kùzu 与 LangChain 的集成使得从非结构化文本创建和更新图变得方便,同时还可以通过利用 LangChain LLM 链强大功能的 Text2Cypher 管道来查询图。首先,我们创建一个 KuzuGraph 对象,它使用上面创建的数据库对象以及 KuzuGraph constructor.

from langchain_kuzu.graphs.kuzu_graph import KuzuGraph

graph = KuzuGraph(db, allow_dangerous_requests=True)

假设我们想要将以下文本转换为图:

text = "Tim Cook is the CEO of Apple. Apple has its headquarters in California."

我们将利用 LLMGraphTransformer 使用 LLM 从文本中提取节点和关系。 为了使图更有用,我们将定义以下模式,以便 LLM 只会 提取与模式匹配的节点和关系。

# Define schema
allowed_nodes = ["Person", "Company", "Location"]
allowed_relationships = [
    ("Person", "IS_CEO_OF", "Company"),
    ("Company", "HAS_HEADQUARTERS_IN", "Location"),
]

LLMGraphTransformer 类提供了一种将文本转换为图形文档列表的便捷方法。

from langchain_core.documents import Document
from langchain_experimental.graph_transformers import LLMGraphTransformer
from langchain_openai import ChatOpenAI

# Define the LLMGraphTransformer
llm_transformer = LLMGraphTransformer(
    llm=ChatOpenAI(model="gpt-5.4-mini", temperature=0, api_key=OPENAI_API_KEY),
    allowed_nodes=allowed_nodes,
    allowed_relationships=allowed_relationships,
)

documents = [Document(page_content=text)]
graph_documents = llm_transformer.convert_to_graph_documents(documents)
graph_documents[:2]
[GraphDocument(nodes=[Node(id='Tim Cook', type='Person', properties={}), Node(id='Apple', type='Company', properties={}), Node(id='California', type='Location', properties={})], relationships=[Relationship(source=Node(id='Tim Cook', type='Person', properties={}), target=Node(id='Apple', type='Company', properties={}), type='IS_CEO_OF', properties={}), Relationship(source=Node(id='Apple', type='Company', properties={}), target=Node(id='California', type='Location', properties={}), type='HAS_HEADQUARTERS_IN', properties={})], source=Document(metadata={}, page_content='Tim Cook is the CEO of Apple. Apple has its headquarters in California.'))]

然后我们可以调用上面定义的 KuzuGraph 对象的 add_graph_documents 方法将图形文档摄入到 Kùzu 数据库中。 该 include_source 参数设置为 True 以便我们还可以在每个实体节点与其来源文档之间创建关系。

# Add the graph document to the graph
graph.add_graph_documents(
    graph_documents,
    include_source=True,
)

创建 KuzuQAChain

要通过 Text2Cypher 管道查询图,我们可以定义一个 KuzuQAChain 对象。然后,我们可以通过连接到存储在上述 test_db 目录中的现有数据库来调用该链。

from langchain_kuzu.chains.graph_qa.kuzu import KuzuQAChain

# Create the KuzuQAChain with verbosity enabled to see the generated Cypher queries
chain = KuzuQAChain.from_llm(
    llm=ChatOpenAI(model="gpt-5.4-mini", temperature=0.3, api_key=OPENAI_API_KEY),
    graph=graph,
    verbose=True,
    allow_dangerous_requests=True,
)

请注意,我们将温度设置为略高于零,以避免 LLM 在回答时过于简略。

让我们使用问答链来问一些问题。

chain.invoke("Who is the CEO of Apple?")
> Entering new KuzuQAChain chain...
Generated Cypher:
MATCH (p:Person)-[:IS_CEO_OF]->(c:Company {id: 'Apple'}) RETURN p
Full Context:
[{'p': {'_id': {'offset': 0, 'table': 1}, '_label': 'Person', 'id': 'Tim Cook', 'type': 'entity'}}]

> Finished chain.
{'query': 'Who is the CEO of Apple?',
 'result': 'Tim Cook is the CEO of Apple.'}
chain.invoke("Where is Apple headquartered?")
> Entering new KuzuQAChain chain...
Generated Cypher:
MATCH (c:Company {id: 'Apple'})-[:HAS_HEADQUARTERS_IN]->(l:Location) RETURN l
Full Context:
[{'l': {'_id': {'offset': 0, 'table': 2}, '_label': 'Location', 'id': 'California', 'type': 'entity'}}]

> Finished chain.
{'query': 'Where is Apple headquartered?',
 'result': 'Apple is headquartered in California.'}

刷新图谱模式

如果修改或更新图谱,您可以检查 Text2Cypher 链用于生成 Cypher 语句的刷新后的模式信息。 您不需要手动调用 refresh_schema() 每次调用链时它都会自动调用。

graph.refresh_schema()

print(graph.get_schema)
Node properties: [{'properties': [('id', 'STRING'), ('type', 'STRING')], 'label': 'Person'}, {'properties': [('id', 'STRING'), ('type', 'STRING')], 'label': 'Location'}, {'properties': [('id', 'STRING'), ('text', 'STRING'), ('type', 'STRING')], 'label': 'Chunk'}, {'properties': [('id', 'STRING'), ('type', 'STRING')], 'label': 'Company'}]
Relationships properties: [{'properties': [], 'label': 'HAS_HEADQUARTERS_IN'}, {'properties': [('label', 'STRING'), ('triplet_source_id', 'STRING')], 'label': 'MENTIONS_Chunk_Person'}, {'properties': [('label', 'STRING'), ('triplet_source_id', 'STRING')], 'label': 'MENTIONS_Chunk_Location'}, {'properties': [], 'label': 'IS_CEO_OF'}, {'properties': [('label', 'STRING'), ('triplet_source_id', 'STRING')], 'label': 'MENTIONS_Chunk_Company'}]
Relationships: ['(:Company)-[:HAS_HEADQUARTERS_IN]->(:Location)', '(:Chunk)-[:MENTIONS_Chunk_Person]->(:Person)', '(:Chunk)-[:MENTIONS_Chunk_Location]->(:Location)', '(:Person)-[:IS_CEO_OF]->(:Company)', '(:Chunk)-[:MENTIONS_Chunk_Company]->(:Company)']

使用单独的 LLM 进行 Cypher 和答案生成

您可以指定 cypher_llmqa_llm 分别使用不同的 LLM 进行 Cypher 生成和答案生成。

chain = KuzuQAChain.from_llm(
    cypher_llm=ChatOpenAI(temperature=0, model="gpt-5.4-mini"),
    qa_llm=ChatOpenAI(temperature=0, model="gpt-4"),
    graph=graph,
    verbose=True,
    allow_dangerous_requests=True,
)
chain.invoke("Who is the CEO of Apple?")
> Entering new KuzuQAChain chain...
Generated Cypher:
MATCH (p:Person)-[:IS_CEO_OF]->(c:Company {id: 'Apple'}) RETURN p.id, p.type
Full Context:
[{'p.id': 'Tim Cook', 'p.type': 'entity'}]

> Finished chain.
{'query': 'Who is the CEO of Apple?',
 'result': 'Tim Cook is the CEO of Apple.'}