SQLite
SQLite 是一种用 C 语言编写的数据库引擎。它不是一个独立的应用程序,而是一个库,软件开发者可以将其嵌入到他们的应用程序中。因此,它属于嵌入式数据库家族。它是使用最广泛的数据库引擎之一,因为它被多个顶级网络浏览器、操作系统、移动电话和其他嵌入式系统所使用。
安装与设置¶
我们需要安装 SQLAlchemy Python 包。
pip install SQLAlchemy
向量存储
查看 使用示例。
from langchain_community.vectorstores import SQLiteVec
from langchain_community.vectorstores import SQLiteVSS # legacy
内存
查看 使用示例。
from langchain_community.chat_message_histories import SQLChatMessageHistory
API 参考:SQL聊天消息历史