autoctx 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.
autoctx-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: autoctx
3
+ Version: 0.0.1
4
+ Summary: Automatic context management for AI agent workflows
5
+ Project-URL: Repository, https://github.com/greyhaven-ai/autoctx
6
+ Author: Grey Haven Studio
7
+ License-Expression: MIT
8
+ Keywords: agents,ai,context,llm
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+
14
+ # autoctx
15
+
16
+ Automatic context management for AI agent workflows.
17
+
18
+ Coming soon.
@@ -0,0 +1,5 @@
1
+ # autoctx
2
+
3
+ Automatic context management for AI agent workflows.
4
+
5
+ Coming soon.
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "autoctx"
7
+ version = "0.0.1"
8
+ description = "Automatic context management for AI agent workflows"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.11"
12
+ authors = [{ name = "Grey Haven Studio" }]
13
+ keywords = ["llm", "context", "ai", "agents"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [project.urls]
20
+ Repository = "https://github.com/greyhaven-ai/autoctx"
@@ -0,0 +1,3 @@
1
+ """autoctx - Automatic context management for AI agent workflows."""
2
+
3
+ __version__ = "0.0.1"