bounded-loops 0.0.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.
- bounded_loops-0.0.0/PKG-INFO +22 -0
- bounded_loops-0.0.0/README.md +8 -0
- bounded_loops-0.0.0/bounded_loops/__init__.py +6 -0
- bounded_loops-0.0.0/bounded_loops.egg-info/PKG-INFO +22 -0
- bounded_loops-0.0.0/bounded_loops.egg-info/SOURCES.txt +7 -0
- bounded_loops-0.0.0/bounded_loops.egg-info/dependency_links.txt +1 -0
- bounded_loops-0.0.0/bounded_loops.egg-info/top_level.txt +1 -0
- bounded_loops-0.0.0/pyproject.toml +24 -0
- bounded_loops-0.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bounded-loops
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon.
|
|
5
|
+
Author-email: Qualixar <varun.pratap.bhardwaj@gmail.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://qualixar.com
|
|
8
|
+
Keywords: ai,agents,agent-loops,reliability,qualixar
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# bounded-loops
|
|
16
|
+
|
|
17
|
+
Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
|
|
18
|
+
|
|
19
|
+
**This name is reserved. The full release is coming soon.**
|
|
20
|
+
|
|
21
|
+
A production-grade library of runnable AI-agent loops: a spec, an independent gate,
|
|
22
|
+
the safety bounds, and a maturity ladder — the same loop across your tools.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# bounded-loops
|
|
2
|
+
|
|
3
|
+
Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
|
|
4
|
+
|
|
5
|
+
**This name is reserved. The full release is coming soon.**
|
|
6
|
+
|
|
7
|
+
A production-grade library of runnable AI-agent loops: a spec, an independent gate,
|
|
8
|
+
the safety bounds, and a maturity ladder — the same loop across your tools.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bounded-loops
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon.
|
|
5
|
+
Author-email: Qualixar <varun.pratap.bhardwaj@gmail.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://qualixar.com
|
|
8
|
+
Keywords: ai,agents,agent-loops,reliability,qualixar
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# bounded-loops
|
|
16
|
+
|
|
17
|
+
Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
|
|
18
|
+
|
|
19
|
+
**This name is reserved. The full release is coming soon.**
|
|
20
|
+
|
|
21
|
+
A production-grade library of runnable AI-agent loops: a spec, an independent gate,
|
|
22
|
+
the safety bounds, and a maturity ladder — the same loop across your tools.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bounded_loops
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bounded-loops"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Qualixar", email = "varun.pratap.bhardwaj@gmail.com" }]
|
|
13
|
+
keywords = ["ai", "agents", "agent-loops", "reliability", "qualixar"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://qualixar.com"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools]
|
|
24
|
+
packages = ["bounded_loops"]
|