Skip to main content
Open on GitHub

SQLite

SQLite 是一个用 C 编程语言编写的数据库引擎。它不是一个独立的应用程序;相反,它是一个软件开发者嵌入到他们的应用程序中的库。因此,它属于嵌入式数据库系列。它是部署最广泛的数据库引擎,因为它被许多顶级网页浏览器、操作系统、手机和其他嵌入式系统所使用。

安装和设置

我们需要安装 SQLAlchemy python 包。

pip install SQLAlchemy

Vector Store

请参阅 用法示例

from langchain_community.vectorstores import SQLiteVec
from langchain_community.vectorstores import SQLiteVSS # legacy
API Reference:SQLiteVec | SQLiteVSS

Memory

请参阅 用法示例

from langchain_community.chat_message_histories import SQLChatMessageHistory
API Reference:SQLChatMessageHistory