kaos-memory 0.0.1.dev0__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,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: kaos-memory
3
+ Version: 0.0.1.dev0
4
+ Summary: KAOS production-grade agent memory: tiered stores, service, and client for Kubernetes agent orchestration (name reservation; full package forthcoming).
5
+ Author: Alejandro Saucedo
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
10
+ # kaos-memory
11
+
12
+ Production-grade agent memory for the KAOS (K8s Agent Orchestration System) project:
13
+ tiered short-term and long-term stores, the memory service, and the client, with an
14
+ optional Pydantic AI integration extra.
15
+
16
+ This initial release reserves the name; the full package is published from
17
+ https://github.com/axsaucedo/kaos as it is carved out of the KAOS runtime.
@@ -0,0 +1,8 @@
1
+ # kaos-memory
2
+
3
+ Production-grade agent memory for the KAOS (K8s Agent Orchestration System) project:
4
+ tiered short-term and long-term stores, the memory service, and the client, with an
5
+ optional Pydantic AI integration extra.
6
+
7
+ This initial release reserves the name; the full package is published from
8
+ https://github.com/axsaucedo/kaos as it is carved out of the KAOS runtime.
@@ -0,0 +1,15 @@
1
+ [project]
2
+ name = "kaos-memory"
3
+ version = "0.0.1.dev0"
4
+ description = "KAOS production-grade agent memory: tiered stores, service, and client for Kubernetes agent orchestration (name reservation; full package forthcoming)."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = { text = "Apache-2.0" }
8
+ authors = [{ name = "Alejandro Saucedo" }]
9
+
10
+ [build-system]
11
+ requires = ["hatchling"]
12
+ build-backend = "hatchling.build"
13
+
14
+ [tool.hatch.build.targets.wheel]
15
+ packages = ["src/kaos_memory"]
@@ -0,0 +1,3 @@
1
+ """KAOS memory (name reservation placeholder)."""
2
+
3
+ __version__ = "0.0.1.dev0"