memnotary 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.
- memnotary-0.0.1/PKG-INFO +26 -0
- memnotary-0.0.1/README.md +10 -0
- memnotary-0.0.1/memnotary/__init__.py +3 -0
- memnotary-0.0.1/pyproject.toml +28 -0
memnotary-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: memnotary
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The audit and integrity layer for AI memory.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Jishudayal/memnotary
|
|
6
|
+
Author-email: Jishu Dayal <jishsonadayal@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: agents,ai,audit,llm,memory,reliability
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# MemNotary
|
|
18
|
+
|
|
19
|
+
**The audit and integrity layer for AI memory.**
|
|
20
|
+
|
|
21
|
+
MemNotary is not another memory store. It is the reliability layer that tells
|
|
22
|
+
you when your AI agent's memory is stale, contradictory, or missing provenance
|
|
23
|
+
— and helps repair it.
|
|
24
|
+
|
|
25
|
+
Full release coming soon. Repository and documentation will be published at
|
|
26
|
+
launch.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# MemNotary
|
|
2
|
+
|
|
3
|
+
**The audit and integrity layer for AI memory.**
|
|
4
|
+
|
|
5
|
+
MemNotary is not another memory store. It is the reliability layer that tells
|
|
6
|
+
you when your AI agent's memory is stale, contradictory, or missing provenance
|
|
7
|
+
— and helps repair it.
|
|
8
|
+
|
|
9
|
+
Full release coming soon. Repository and documentation will be published at
|
|
10
|
+
launch.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "memnotary"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The audit and integrity layer for AI memory."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Jishu Dayal", email = "jishsonadayal@gmail.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "memory", "agents", "llm", "reliability", "audit"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://github.com/Jishudayal/memnotary"
|
|
26
|
+
|
|
27
|
+
[tool.hatch.build.targets.wheel]
|
|
28
|
+
packages = ["memnotary"]
|