mnemosure 0.0.1__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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: mnemosure
3
+ Version: 0.0.1
4
+ Summary: Grounded memory layer for AI agents — admits what it doesn't know, and cites sources for what it does. Name reserved; implementation in progress.
5
+ License: MIT
6
+ Keywords: mcp,model-context-protocol,memory,ai-agent,grounded,qwen
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # mnemosure
11
+
12
+ A grounded memory layer for AI agents — it **says "I don't know" when it doesn't, and cites its sources when it does.**
13
+
14
+ Built for the Qwen Cloud Global AI Hackathon (Track 1 · MemoryAgent). Exposes a memory layer over MCP so any agent can plug in persistent, source-grounded recall.
15
+
16
+ > This package name is **reserved**; the implementation is in progress.
@@ -0,0 +1,7 @@
1
+ # mnemosure
2
+
3
+ A grounded memory layer for AI agents — it **says "I don't know" when it doesn't, and cites its sources when it does.**
4
+
5
+ Built for the Qwen Cloud Global AI Hackathon (Track 1 · MemoryAgent). Exposes a memory layer over MCP so any agent can plug in persistent, source-grounded recall.
6
+
7
+ > This package name is **reserved**; the implementation is in progress.
@@ -0,0 +1,3 @@
1
+ """Mnemosure — grounded memory layer for AI agents. Name reserved; implementation in progress."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: mnemosure
3
+ Version: 0.0.1
4
+ Summary: Grounded memory layer for AI agents — admits what it doesn't know, and cites sources for what it does. Name reserved; implementation in progress.
5
+ License: MIT
6
+ Keywords: mcp,model-context-protocol,memory,ai-agent,grounded,qwen
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # mnemosure
11
+
12
+ A grounded memory layer for AI agents — it **says "I don't know" when it doesn't, and cites its sources when it does.**
13
+
14
+ Built for the Qwen Cloud Global AI Hackathon (Track 1 · MemoryAgent). Exposes a memory layer over MCP so any agent can plug in persistent, source-grounded recall.
15
+
16
+ > This package name is **reserved**; the implementation is in progress.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ mnemosure/__init__.py
4
+ mnemosure.egg-info/PKG-INFO
5
+ mnemosure.egg-info/SOURCES.txt
6
+ mnemosure.egg-info/dependency_links.txt
7
+ mnemosure.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mnemosure
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mnemosure"
7
+ version = "0.0.1"
8
+ description = "Grounded memory layer for AI agents — admits what it doesn't know, and cites sources for what it does. Name reserved; implementation in progress."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ keywords = ["mcp", "model-context-protocol", "memory", "ai-agent", "grounded", "qwen"]
13
+
14
+ [tool.setuptools]
15
+ packages = ["mnemosure"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+