跳至主要内容

Google Firestore(原生模式)

Firestore 是一个无服务器文档型数据库,可以扩展以满足任何需求。 利用 Firestore 的 Langchain 集成扩展您的数据库应用程序,以构建 AI 驱动的体验。

此笔记本介绍了如何使用 Firestore保存、加载和删除 Langchain 文档,方法是使用 FirestoreLoaderFirestoreSaver

GitHub 上了解更多关于该包的信息。

Open In Colab

开始之前

要运行此笔记本,您需要执行以下操作

在确认访问此笔记本运行时环境中的数据库后,填写以下值并在运行示例脚本之前运行单元格。

# @markdown Please specify a source for demo purpose.
SOURCE = "test" # @param {type:"Query"|"CollectionGroup"|"DocumentReference"|"string"}

🦜🔗 库安装

该集成位于它自己的 langchain-google-firestore 包中,因此我们需要安装它。

%pip install -upgrade --quiet langchain-google-firestore

仅限 Colab:取消注释以下单元格以重新启动内核,或使用按钮重新启动内核。 对于 Vertex AI Workbench,您可以使用顶部的按钮重新启动终端。

# # Automatically restart kernel after installs so that your environment can access the new packages
# import IPython

# app = IPython.Application.instance()
# app.kernel.do_shutdown(True)

☁ 设置您的 Google Cloud 项目

设置您的 Google Cloud 项目,以便您可以在此笔记本中利用 Google Cloud 资源。

如果您不知道您的项目 ID,请尝试以下操作

  • 运行 gcloud config list
  • 运行 gcloud projects list
  • 查看支持页面:查找项目 ID
# @markdown Please fill in the value below with your Google Cloud project ID and then run the cell.

PROJECT_ID = "my-project-id" # @param {type:"string"}

# Set the project id
!gcloud config set project {PROJECT_ID}

🔐 身份验证

以登录此笔记本的 IAM 用户身份对 Google Cloud 进行身份验证,以便访问您的 Google Cloud 项目。

  • 如果您使用 Colab 来运行此笔记本,请使用下面的单元格并继续。
  • 如果您使用 Vertex AI Workbench,请查看设置说明 此处
from google.colab import auth

auth.authenticate_user()

基本用法

保存文档

FirestoreSaver 可以将文档存储到 Firestore 中。 默认情况下,它将尝试从元数据中提取文档引用

使用 FirestoreSaver.upsert_documents(<documents>) 保存 Langchain 文档。

from langchain_core.documents import Document
from langchain_google_firestore import FirestoreSaver

saver = FirestoreSaver()

data = [Document(page_content="Hello, World!")]

saver.upsert_documents(data)
API 参考:文档

保存没有引用的文档

如果指定了集合,则文档将使用自动生成的 ID 存储。

saver = FirestoreSaver("Collection")

saver.upsert_documents(data)

使用其他引用保存文档

doc_ids = ["AnotherCollection/doc_id", "foo/bar"]
saver = FirestoreSaver()

saver.upsert_documents(documents=data, document_ids=doc_ids)

从集合或子集合加载

使用 FirestoreLoader.load()Firestore.lazy_load() 加载 Langchain 文档。 lazy_load 返回一个生成器,它只在迭代期间查询数据库。 要初始化 FirestoreLoader 类,您需要提供

  1. source - 查询、集合组、文档引用的实例或 Firestore 集合的单个 \ 分隔路径。
from langchain_google_firestore import FirestoreLoader

loader_collection = FirestoreLoader("Collection")
loader_subcollection = FirestoreLoader("Collection/doc/SubCollection")


data_collection = loader_collection.load()
data_subcollection = loader_subcollection.load()

加载单个文档

from google.cloud import firestore

client = firestore.Client()
doc_ref = client.collection("foo").document("bar")

loader_document = FirestoreLoader(doc_ref)

data = loader_document.load()

从集合组或查询加载

from google.cloud.firestore import CollectionGroup, FieldFilter, Query

col_ref = client.collection("col_group")
collection_group = CollectionGroup(col_ref)

loader_group = FirestoreLoader(collection_group)

col_ref = client.collection("collection")
query = col_ref.where(filter=FieldFilter("region", "==", "west_coast"))

loader_query = FirestoreLoader(query)

删除文档

使用 FirestoreSaver.delete_documents(<documents>) 从 Firestore 集合中删除 Langchain 文档列表。

如果提供了文档 ID,则将忽略这些文档。

saver = FirestoreSaver()

saver.delete_documents(data)

# The Documents will be ignored and only the document ids will be used.
saver.delete_documents(data, doc_ids)

高级用法

使用自定义文档页面内容和元数据加载文档

page_content_fieldsmetadata_fields 的参数将指定要写入 LangChain 文档 page_contentmetadata 的 Firestore 文档字段。

loader = FirestoreLoader(
source="foo/bar/subcol",
page_content_fields=["data_field"],
metadata_fields=["metadata_field"],
)

data = loader.load()

自定义页面内容格式

page_content 仅包含一个字段时,信息将仅是该字段的值。 否则,page_content 将采用 JSON 格式。

自定义连接和身份验证

from google.auth import compute_engine
from google.cloud.firestore import Client

client = Client(database="non-default-db", creds=compute_engine.Credentials())
loader = FirestoreLoader(
source="foo",
client=client,
)

此页面是否有用?


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