memgc 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.
- memgc-0.0.1/PKG-INFO +22 -0
- memgc-0.0.1/README.md +5 -0
- memgc-0.0.1/memgc/__init__.py +7 -0
- memgc-0.0.1/pyproject.toml +24 -0
memgc-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: memgc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Self-hostable AI memory layer with calibrated decay. Placeholder release; full library coming soon.
|
|
5
|
+
Project-URL: Homepage, https://github.com/carrickcheah/agentgc
|
|
6
|
+
Project-URL: Repository, https://github.com/carrickcheah/agentgc
|
|
7
|
+
Author-email: Carrick Cheah <carrick.cheah@green-methods.com>
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Keywords: agent,ai,llm,memory,rag
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# memgc
|
|
19
|
+
|
|
20
|
+
Self-hostable AI memory layer with calibrated decay. **Placeholder release** reserving the package name; full library coming soon.
|
|
21
|
+
|
|
22
|
+
See <https://github.com/carrickcheah/agentgc> for development status.
|
memgc-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "memgc"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Self-hostable AI memory layer with calibrated decay. Placeholder release; full library coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
authors = [{ name = "Carrick Cheah", email = "carrick.cheah@green-methods.com" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
keywords = ["memory", "ai", "agent", "llm", "rag"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/carrickcheah/agentgc"
|
|
24
|
+
Repository = "https://github.com/carrickcheah/agentgc"
|