Skip to main content
Open on GitHub

SQLite

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

安装与设置

我们需要安装SQLAlchemy python包。

pip install SQLAlchemy

向量存储

查看使用示例

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

内存

查看使用示例

from langchain_community.chat_message_histories import SQLChatMessageHistory
API Reference:SQLChatMessageHistory

这个页面有帮助吗?