SurrealDB
SurrealDB 是一款端到端的云原生数据库,专为现代应用程序而设计,包括 Web、移动、无服务器、Jamstack、后端和传统应用程序。使用 SurrealDB,您可以简化您的数据库和 API 基础设施,缩短开发时间,并快速经济高效地构建安全、高性能的应用程序。
SurrealDB 的主要功能包括
- 缩短开发时间:SurrealDB 通过消除大多数服务器端组件的需求来简化您的数据库和 API 堆栈,使您能够更快、更便宜地构建安全、高性能的应用程序。
- 实时协作 API 后端服务:SurrealDB 同时充当数据库和 API 后端服务,支持实时协作。
- 支持多种查询语言:SurrealDB 支持来自客户端设备的 SQL 查询、GraphQL、ACID 事务、WebSocket 连接、结构化和非结构化数据、图查询、全文索引和地理空间查询。
- 细粒度的访问控制:SurrealDB 提供基于行级权限的访问控制,使您能够精确地管理数据访问。
此笔记本演示了如何使用与SurrealDBLoader
相关的功能。
概述
SurrealDB 文档加载器从 SurrealDB 数据库返回 Langchain 文档列表。
文档加载器采用以下可选参数
dburl
:到 websocket 端点的连接字符串。默认值:ws://localhost:8000/rpc
ns
:命名空间的名称。默认值:langchain
db
:数据库的名称。默认值:database
table
:表的名称。默认值:documents
db_user
:如果需要,SurrealDB 凭据:数据库用户名。db_pass
:如果需要,SurrealDB 凭据:数据库密码。filter_criteria
:用于构建WHERE
子句以从表中过滤结果的字典。
输出Document
采用以下格式
Document(
page_content=<json encoded string containing the result document>,
metadata={
'id': <document id>,
'ns': <namespace name>,
'db': <database_name>,
'table': <table name>,
... <additional fields from metadata property of the document>
}
)
设置
取消注释以下单元格以安装 surrealdb 和 langchain。
# %pip install --upgrade --quiet surrealdb langchain langchain-community
# add this import for running in jupyter notebook
import nest_asyncio
nest_asyncio.apply()
import json
from langchain_community.document_loaders.surrealdb import SurrealDBLoader
API 参考:SurrealDBLoader
loader = SurrealDBLoader(
dburl="ws://localhost:8000/rpc",
ns="langchain",
db="database",
table="documents",
db_user="root",
db_pass="root",
filter_criteria={},
)
docs = loader.load()
len(docs)
42
doc = docs[-1]
doc.metadata
{'id': 'documents:zzz434sa584xl3b4ohvk',
'source': '../../how_to/state_of_the_union.txt',
'ns': 'langchain',
'db': 'database',
'table': 'documents'}
len(doc.page_content)
18078
page_content = json.loads(doc.page_content)
page_content["text"]
'When we use taxpayer dollars to rebuild America – we are going to Buy American: buy American products to support American jobs. \n\nThe federal government spends about $600 Billion a year to keep the country safe and secure. \n\nThere’s been a law on the books for almost a century \nto make sure taxpayers’ dollars support American jobs and businesses. \n\nEvery Administration says they’ll do it, but we are actually doing it. \n\nWe will buy American to make sure everything from the deck of an aircraft carrier to the steel on highway guardrails are made in America. \n\nBut to compete for the best jobs of the future, we also need to level the playing field with China and other competitors. \n\nThat’s why it is so important to pass the Bipartisan Innovation Act sitting in Congress that will make record investments in emerging technologies and American manufacturing. \n\nLet me give you one example of why it’s so important to pass it.'