spaimind 0.1.0__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.
- spaimind-0.1.0/PKG-INFO +33 -0
- spaimind-0.1.0/README.md +17 -0
- spaimind-0.1.0/pyproject.toml +23 -0
- spaimind-0.1.0/setup.cfg +4 -0
- spaimind-0.1.0/src/spaimind/__init__.py +6 -0
- spaimind-0.1.0/src/spaimind.egg-info/PKG-INFO +33 -0
- spaimind-0.1.0/src/spaimind.egg-info/SOURCES.txt +7 -0
- spaimind-0.1.0/src/spaimind.egg-info/dependency_links.txt +1 -0
- spaimind-0.1.0/src/spaimind.egg-info/top_level.txt +1 -0
spaimind-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: spaimind
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI memory and persistent context management for LLM-based agents.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# SpaiMind
|
|
18
|
+
|
|
19
|
+
AI memory and persistent context management for LLM-based agents.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install spaimind
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
spaimind-0.1.0/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# SpaiMind
|
|
2
|
+
|
|
3
|
+
AI memory and persistent context management for LLM-based agents.
|
|
4
|
+
|
|
5
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
6
|
+
|
|
7
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install spaimind
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "spaimind"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "AI memory and persistent context management for LLM-based agents."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
authors = [{name = "CrewGR", email = "krugergustav@gmail.com"}]
|
|
12
|
+
keywords = ["ai", "agent", "spai", "globifai", "crewgr"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: Other/Proprietary License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.9"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/globifai"
|
spaimind-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: spaimind
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI memory and persistent context management for LLM-based agents.
|
|
5
|
+
Author-email: CrewGR <krugergustav@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/globifai
|
|
8
|
+
Keywords: ai,agent,spai,globifai,crewgr
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# SpaiMind
|
|
18
|
+
|
|
19
|
+
AI memory and persistent context management for LLM-based agents.
|
|
20
|
+
|
|
21
|
+
Part of the [GlobifAI](https://github.com/globifai) product family by [CrewGR](https://github.com/CrewGR-Platform).
|
|
22
|
+
|
|
23
|
+
> This package is a namespace reservation. Full SDK coming soon.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install spaimind
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
Proprietary — © 2026 CrewGR. All rights reserved.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
spaimind
|