AbstractMemory 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.
Files changed (28) hide show
  1. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/AbstractMemory.egg-info/PKG-INFO +5 -5
  2. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/PKG-INFO +5 -5
  3. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/pyproject.toml +5 -5
  4. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/AbstractMemory.egg-info/SOURCES.txt +0 -0
  5. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/AbstractMemory.egg-info/dependency_links.txt +0 -0
  6. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/AbstractMemory.egg-info/requires.txt +0 -0
  7. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/AbstractMemory.egg-info/top_level.txt +0 -0
  8. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/LICENSE +0 -0
  9. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/README.md +0 -0
  10. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/__init__.py +0 -0
  11. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/cognitive/__init__.py +0 -0
  12. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/components/__init__.py +0 -0
  13. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/components/core.py +0 -0
  14. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/components/episodic.py +0 -0
  15. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/components/semantic.py +0 -0
  16. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/components/working.py +0 -0
  17. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/core/__init__.py +0 -0
  18. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/core/interfaces.py +0 -0
  19. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/core/temporal.py +0 -0
  20. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/embeddings/__init__.py +0 -0
  21. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/graph/__init__.py +0 -0
  22. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/graph/knowledge_graph.py +0 -0
  23. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/simple.py +0 -0
  24. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/storage/__init__.py +0 -0
  25. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/storage/dual_manager.py +0 -0
  26. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/storage/lancedb_storage.py +0 -0
  27. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/abstractmemory/storage/markdown_storage.py +0 -0
  28. {abstractmemory-0.2.1 → abstractmemory-0.2.2}/setup.cfg +0 -0
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractMemory
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Production-ready memory system for LLM agents - NO MOCKS, real semantic search, clear LLM vs embedding provider separation
5
5
  Author-email: AbstractMemory Team <lpalbou@gmail.com>
6
6
  Maintainer-email: AbstractMemory Team <palbou@gmail.com>
7
7
  License-Expression: MIT
8
- Project-URL: Homepage, https://github.com/lpalbou/AbstractAgent
9
- Project-URL: Documentation, https://github.com/lpalbou/AbstractAgent#readme
10
- Project-URL: Repository, https://github.com/lpalbou/AbstractAgent
11
- Project-URL: Bug Reports, https://github.com/lpalbou/AbstractAgent/issues
8
+ Project-URL: Homepage, https://github.com/lpalbou/AbstractMemory
9
+ Project-URL: Documentation, https://github.com/lpalbou/AbstractMemory#readme
10
+ Project-URL: Repository, https://github.com/lpalbou/AbstractMemory
11
+ Project-URL: Bug Reports, https://github.com/lpalbou/AbstractMemory/issues
12
12
  Keywords: llm,memory,semantic-search,embeddings,ai,agents,knowledge-graph,temporal,grounded-memory,vector-search
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AbstractMemory
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Production-ready memory system for LLM agents - NO MOCKS, real semantic search, clear LLM vs embedding provider separation
5
5
  Author-email: AbstractMemory Team <lpalbou@gmail.com>
6
6
  Maintainer-email: AbstractMemory Team <palbou@gmail.com>
7
7
  License-Expression: MIT
8
- Project-URL: Homepage, https://github.com/lpalbou/AbstractAgent
9
- Project-URL: Documentation, https://github.com/lpalbou/AbstractAgent#readme
10
- Project-URL: Repository, https://github.com/lpalbou/AbstractAgent
11
- Project-URL: Bug Reports, https://github.com/lpalbou/AbstractAgent/issues
8
+ Project-URL: Homepage, https://github.com/lpalbou/AbstractMemory
9
+ Project-URL: Documentation, https://github.com/lpalbou/AbstractMemory#readme
10
+ Project-URL: Repository, https://github.com/lpalbou/AbstractMemory
11
+ Project-URL: Bug Reports, https://github.com/lpalbou/AbstractMemory/issues
12
12
  Keywords: llm,memory,semantic-search,embeddings,ai,agents,knowledge-graph,temporal,grounded-memory,vector-search
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "AbstractMemory"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Production-ready memory system for LLM agents - NO MOCKS, real semantic search, clear LLM vs embedding provider separation"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -41,10 +41,10 @@ storage = ["lancedb>=0.6.0"]
41
41
  all = ["abstractcore>=2.1.0", "lancedb>=0.6.0"]
42
42
 
43
43
  [project.urls]
44
- Homepage = "https://github.com/lpalbou/AbstractAgent"
45
- Documentation = "https://github.com/lpalbou/AbstractAgent#readme"
46
- Repository = "https://github.com/lpalbou/AbstractAgent"
47
- "Bug Reports" = "https://github.com/lpalbou/AbstractAgent/issues"
44
+ Homepage = "https://github.com/lpalbou/AbstractMemory"
45
+ Documentation = "https://github.com/lpalbou/AbstractMemory#readme"
46
+ Repository = "https://github.com/lpalbou/AbstractMemory"
47
+ "Bug Reports" = "https://github.com/lpalbou/AbstractMemory/issues"
48
48
 
49
49
  [tool.setuptools.packages.find]
50
50
  where = ["."]
File without changes
File without changes
File without changes