From 253fd0208b0c53e97f60acb31eaeb7ff6b24f4bd Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Tue, 27 Aug 2024 17:47:32 -0400 Subject: [PATCH] [REQ] --- pyproject.toml | 2 +- requirements.txt | 2 ++ swarms_memory/__init__.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e717324..0b80329 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms-memory" -version = "0.0.8" +version = "0.0.9" description = "Swarms Memory - Pytorch" license = "MIT" authors = ["Kye Gomez "] diff --git a/requirements.txt b/requirements.txt index 0be3138..6c4db2e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,3 +5,5 @@ pinecone faiss-cpu torch pydantic +sqlalchemy +sqlite3 \ No newline at end of file diff --git a/swarms_memory/__init__.py b/swarms_memory/__init__.py index 716b31f..40ba862 100644 --- a/swarms_memory/__init__.py +++ b/swarms_memory/__init__.py @@ -1,2 +1,3 @@ from swarms_memory.vector_dbs import * # noqa: F401, F403 from swarms_memory.utils import * # noqa: F401, F403 +from swarms_memory.dbs import * # noqa: F401, F403