hdmem 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.
- hdmem-0.0.1/PKG-INFO +39 -0
- hdmem-0.0.1/README.md +23 -0
- hdmem-0.0.1/pyproject.toml +25 -0
- hdmem-0.0.1/setup.cfg +4 -0
- hdmem-0.0.1/src/hdmem/__init__.py +3 -0
- hdmem-0.0.1/src/hdmem.egg-info/PKG-INFO +39 -0
- hdmem-0.0.1/src/hdmem.egg-info/SOURCES.txt +7 -0
- hdmem-0.0.1/src/hdmem.egg-info/dependency_links.txt +1 -0
- hdmem-0.0.1/src/hdmem.egg-info/top_level.txt +1 -0
hdmem-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hdmem
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Hyperdimensional memory for AI agents. Unshackle your agents.
|
|
5
|
+
Author-email: Combray Labs <jeff@combray.ai>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://combray.ai
|
|
8
|
+
Project-URL: Repository, https://github.com/combraylabs/hdmem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# hdmem
|
|
18
|
+
|
|
19
|
+
**Hyperdimensional memory for AI agents. Unshackle your agents.**
|
|
20
|
+
|
|
21
|
+
By [Combray Labs](https://combray.ai) — Memory that thinks.
|
|
22
|
+
|
|
23
|
+
> Coming soon. This package is under active development.
|
|
24
|
+
|
|
25
|
+
hdmem uses Hyperdimensional Computing (HDC) to provide AI agents with fast, efficient memory operations — consolidation, retrieval, forgetting, and tool routing — without inference calls.
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install hdmem
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Status
|
|
34
|
+
|
|
35
|
+
v0.0.1 — Name reservation. Full release coming soon.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
Apache 2.0
|
hdmem-0.0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# hdmem
|
|
2
|
+
|
|
3
|
+
**Hyperdimensional memory for AI agents. Unshackle your agents.**
|
|
4
|
+
|
|
5
|
+
By [Combray Labs](https://combray.ai) — Memory that thinks.
|
|
6
|
+
|
|
7
|
+
> Coming soon. This package is under active development.
|
|
8
|
+
|
|
9
|
+
hdmem uses Hyperdimensional Computing (HDC) to provide AI agents with fast, efficient memory operations — consolidation, retrieval, forgetting, and tool routing — without inference calls.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install hdmem
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Status
|
|
18
|
+
|
|
19
|
+
v0.0.1 — Name reservation. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
Apache 2.0
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hdmem"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Hyperdimensional memory for AI agents. Unshackle your agents."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Combray Labs", email = "jeff@combray.ai"},
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://combray.ai"
|
|
25
|
+
Repository = "https://github.com/combraylabs/hdmem"
|
hdmem-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hdmem
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Hyperdimensional memory for AI agents. Unshackle your agents.
|
|
5
|
+
Author-email: Combray Labs <jeff@combray.ai>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://combray.ai
|
|
8
|
+
Project-URL: Repository, https://github.com/combraylabs/hdmem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# hdmem
|
|
18
|
+
|
|
19
|
+
**Hyperdimensional memory for AI agents. Unshackle your agents.**
|
|
20
|
+
|
|
21
|
+
By [Combray Labs](https://combray.ai) — Memory that thinks.
|
|
22
|
+
|
|
23
|
+
> Coming soon. This package is under active development.
|
|
24
|
+
|
|
25
|
+
hdmem uses Hyperdimensional Computing (HDC) to provide AI agents with fast, efficient memory operations — consolidation, retrieval, forgetting, and tool routing — without inference calls.
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install hdmem
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Status
|
|
34
|
+
|
|
35
|
+
v0.0.1 — Name reservation. Full release coming soon.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
Apache 2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hdmem
|