aibrain 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.
- aibrain-0.0.1/PKG-INFO +21 -0
- aibrain-0.0.1/README_PLACEHOLDER.md +5 -0
- aibrain-0.0.1/agent_os_placeholder/__init__.py +2 -0
- aibrain-0.0.1/aibrain.egg-info/PKG-INFO +21 -0
- aibrain-0.0.1/aibrain.egg-info/SOURCES.txt +7 -0
- aibrain-0.0.1/aibrain.egg-info/dependency_links.txt +1 -0
- aibrain-0.0.1/aibrain.egg-info/top_level.txt +1 -0
- aibrain-0.0.1/pyproject.toml +25 -0
- aibrain-0.0.1/setup.cfg +4 -0
aibrain-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aibrain
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Portable agent operating system with selective memory routing
|
|
5
|
+
Author-email: Matthew McKee <decker.ops@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DeckerOps/agentos
|
|
8
|
+
Keywords: ai,agent,memory,mcp,workflows,automation,llm
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# AgentOS
|
|
18
|
+
|
|
19
|
+
Portable agent operating system with selective memory routing.
|
|
20
|
+
|
|
21
|
+
Full release coming soon. See [GitHub](https://github.com/DeckerOps/agentos) for details.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aibrain
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Portable agent operating system with selective memory routing
|
|
5
|
+
Author-email: Matthew McKee <decker.ops@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DeckerOps/agentos
|
|
8
|
+
Keywords: ai,agent,memory,mcp,workflows,automation,llm
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# AgentOS
|
|
18
|
+
|
|
19
|
+
Portable agent operating system with selective memory routing.
|
|
20
|
+
|
|
21
|
+
Full release coming soon. See [GitHub](https://github.com/DeckerOps/agentos) for details.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agent_os_placeholder
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aibrain"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Portable agent operating system with selective memory routing"
|
|
9
|
+
readme = "README_PLACEHOLDER.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Matthew McKee", email = "decker.ops@gmail.com"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "agent", "memory", "mcp", "workflows", "automation", "llm"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://github.com/DeckerOps/agentos"
|
aibrain-0.0.1/setup.cfg
ADDED