agentforge-memory-sqlite 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/PKG-INFO +2 -2
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/pyproject.toml +2 -2
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/__init__.py +1 -1
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/.gitignore +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/LICENSE +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/README.md +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/_migrator.py +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/memory.py +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/migrations/0000_migrations_table.sql +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/migrations/0001_initial.sql +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/migrations/0002_fts5.sql +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/py.typed +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/src/agentforge_memory_sqlite/vector.py +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/tests/unit/test_memory.py +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/tests/unit/test_sqlite_migrator.py +0 -0
- {agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/tests/unit/test_vector.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentforge-memory-sqlite
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: SQLite-backed MemoryStore and VectorStore for AgentForge
|
|
5
5
|
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
6
|
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
@@ -20,7 +20,7 @@ Classifier: Topic :: Database
|
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
21
|
Classifier: Typing :: Typed
|
|
22
22
|
Requires-Python: >=3.13
|
|
23
|
-
Requires-Dist: agentforge-core~=0.2.
|
|
23
|
+
Requires-Dist: agentforge-core~=0.2.2
|
|
24
24
|
Requires-Dist: aiosqlite>=0.20
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "agentforge-memory-sqlite"
|
|
13
|
-
version = "0.2.
|
|
13
|
+
version = "0.2.2"
|
|
14
14
|
description = "SQLite-backed MemoryStore and VectorStore for AgentForge"
|
|
15
15
|
readme = "README.md"
|
|
16
16
|
requires-python = ">=3.13"
|
|
@@ -32,7 +32,7 @@ classifiers = [
|
|
|
32
32
|
]
|
|
33
33
|
|
|
34
34
|
dependencies = [
|
|
35
|
-
"agentforge-core ~= 0.2.
|
|
35
|
+
"agentforge-core ~= 0.2.2",
|
|
36
36
|
"aiosqlite>=0.20",
|
|
37
37
|
]
|
|
38
38
|
|
|
@@ -12,6 +12,6 @@ from __future__ import annotations
|
|
|
12
12
|
from agentforge_memory_sqlite.memory import SqliteMemoryStore
|
|
13
13
|
from agentforge_memory_sqlite.vector import SqliteVectorStore
|
|
14
14
|
|
|
15
|
-
__version__ = "0.2.
|
|
15
|
+
__version__ = "0.2.2"
|
|
16
16
|
|
|
17
17
|
__all__ = ["SqliteMemoryStore", "SqliteVectorStore", "__version__"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentforge_memory_sqlite-0.2.1 → agentforge_memory_sqlite-0.2.2}/tests/unit/test_sqlite_migrator.py
RENAMED
|
File without changes
|
|
File without changes
|