memoryhub 0.1.0.dev1__py3-none-any.whl

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.
memoryhub/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """MemoryHub — Centralized, governed memory for AI agents."""
2
+
3
+ __version__ = "0.1.0.dev1"
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: memoryhub
3
+ Version: 0.1.0.dev1
4
+ Summary: Centralized, governed memory for AI agents
5
+ Project-URL: Homepage, https://github.com/rdwj/memory-hub
6
+ Project-URL: Repository, https://github.com/rdwj/memory-hub
7
+ Project-URL: Issues, https://github.com/rdwj/memory-hub/issues
8
+ Author: William Jackson
9
+ License-Expression: Apache-2.0
10
+ Keywords: agents,ai,kubernetes,mcp,memory,openshift
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+
24
+ # memoryhub
25
+
26
+ Centralized, governed memory for AI agents.
27
+
28
+ MemoryHub provides a persistent memory layer for AI agents running on OpenShift AI, with scope-based access control, multi-tenant isolation, and an immutable audit trail. It works with any agent framework — LlamaStack, LangChain, Claude Code, Cursor, and more.
29
+
30
+ **Status:** Pre-alpha. The SDK is under active development.
31
+
32
+ ## Quick start
33
+
34
+ ```python
35
+ from memoryhub import MemoryHubClient
36
+
37
+ client = MemoryHubClient(
38
+ url="https://memoryhub.apps.example.com",
39
+ api_key="your-api-key",
40
+ )
41
+
42
+ # Search memories
43
+ results = await client.search("deployment patterns")
44
+
45
+ # Write a memory
46
+ await client.write("FastAPI is the preferred web framework", scope="project")
47
+ ```
48
+
49
+ ## Links
50
+
51
+ - [GitHub](https://github.com/rdwj/memory-hub)
52
+ - [Architecture](https://github.com/rdwj/memory-hub/blob/main/docs/ARCHITECTURE.md)
@@ -0,0 +1,4 @@
1
+ memoryhub/__init__.py,sha256=UJzmbqmecvQ_H6GsjWMO7aCw83sfcE6pRl8m_k9uSKE,92
2
+ memoryhub-0.1.0.dev1.dist-info/METADATA,sha256=La6bGZ5qAQQSu4C-9Z-ypY9LKHNsEOqVgTuyUrIsY2I,1878
3
+ memoryhub-0.1.0.dev1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ memoryhub-0.1.0.dev1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any