Skip to main content
Open In ColabOpen on GitHub

SurrealDB

SurrealDB 是一个专为现代应用设计的端到端云原生数据库,包括网络、移动、无服务器、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 Reference: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.'

这个页面有帮助吗?