loopgain 0.1.2__tar.gz → 0.1.3__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.
- {loopgain-0.1.2 → loopgain-0.1.3}/PKG-INFO +2 -4
- {loopgain-0.1.2 → loopgain-0.1.3}/README.md +1 -3
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain/__init__.py +1 -1
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain/core.py +1 -1
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain/telemetry.py +1 -1
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain.egg-info/PKG-INFO +2 -4
- {loopgain-0.1.2 → loopgain-0.1.3}/pyproject.toml +1 -1
- {loopgain-0.1.2 → loopgain-0.1.3}/LICENSE +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain.egg-info/SOURCES.txt +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain.egg-info/dependency_links.txt +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain.egg-info/requires.txt +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/loopgain.egg-info/top_level.txt +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/setup.cfg +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/tests/test_core.py +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/tests/test_stress.py +0 -0
- {loopgain-0.1.2 → loopgain-0.1.3}/tests/test_telemetry.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: loopgain
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Barkhausen stability monitor for AI agent loops. Real-time loop-gain (Aβ) monitoring with five named threshold bands, best-so-far rollback, and ETA prediction.
|
|
5
5
|
Author-email: Dave Fitzsimmons <dave_fitz@icloud.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -101,7 +101,7 @@ Plus a short-circuit: if observed error drops at or below `target_error`, the lo
|
|
|
101
101
|
|
|
102
102
|
The `±0.05` noise band around `Aβ=1` absorbs stochastic jitter from agent outputs without triggering false-positive aborts. The `0.85` `STALLING` boundary is an early warning — by the time `Aβ` crosses `1.0`, you've already wasted iterations.
|
|
103
103
|
|
|
104
|
-
These threshold defaults
|
|
104
|
+
These threshold defaults are derived from the Barkhausen-stability analysis and serve as reasonable starting points. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
|
|
105
105
|
|
|
106
106
|
---
|
|
107
107
|
|
|
@@ -234,5 +234,3 @@ Loop types this applies to in practice:
|
|
|
234
234
|
- **Code generation with linter/test feedback** — generate, run tests/linter, fix, repeat. Error = failing test count or linter violation count.
|
|
235
235
|
- **Multi-step reasoning loops** — ReAct-style think/act/observe iterations. Error = whatever the agent's quality assessor returns.
|
|
236
236
|
- **Custom feedback loops** — anything where you can produce a number that should drop toward zero as the loop succeeds.
|
|
237
|
-
|
|
238
|
-
See [loopgain.ai](https://loopgain.ai) for the longer write-up.
|
|
@@ -73,7 +73,7 @@ Plus a short-circuit: if observed error drops at or below `target_error`, the lo
|
|
|
73
73
|
|
|
74
74
|
The `±0.05` noise band around `Aβ=1` absorbs stochastic jitter from agent outputs without triggering false-positive aborts. The `0.85` `STALLING` boundary is an early warning — by the time `Aβ` crosses `1.0`, you've already wasted iterations.
|
|
75
75
|
|
|
76
|
-
These threshold defaults
|
|
76
|
+
These threshold defaults are derived from the Barkhausen-stability analysis and serve as reasonable starting points. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
|
|
77
77
|
|
|
78
78
|
---
|
|
79
79
|
|
|
@@ -206,5 +206,3 @@ Loop types this applies to in practice:
|
|
|
206
206
|
- **Code generation with linter/test feedback** — generate, run tests/linter, fix, repeat. Error = failing test count or linter violation count.
|
|
207
207
|
- **Multi-step reasoning loops** — ReAct-style think/act/observe iterations. Error = whatever the agent's quality assessor returns.
|
|
208
208
|
- **Custom feedback loops** — anything where you can produce a number that should drop toward zero as the loop succeeds.
|
|
209
|
-
|
|
210
|
-
See [loopgain.ai](https://loopgain.ai) for the longer write-up.
|
|
@@ -10,7 +10,7 @@ named states and decides whether to continue, stop, or roll back.
|
|
|
10
10
|
|
|
11
11
|
The math is foundational EE control theory. The product layer is the
|
|
12
12
|
threshold bands, the best-so-far buffer, the ETA prediction, and the
|
|
13
|
-
clean Python API.
|
|
13
|
+
clean Python API.
|
|
14
14
|
|
|
15
15
|
License: Apache-2.0
|
|
16
16
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: loopgain
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Barkhausen stability monitor for AI agent loops. Real-time loop-gain (Aβ) monitoring with five named threshold bands, best-so-far rollback, and ETA prediction.
|
|
5
5
|
Author-email: Dave Fitzsimmons <dave_fitz@icloud.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -101,7 +101,7 @@ Plus a short-circuit: if observed error drops at or below `target_error`, the lo
|
|
|
101
101
|
|
|
102
102
|
The `±0.05` noise band around `Aβ=1` absorbs stochastic jitter from agent outputs without triggering false-positive aborts. The `0.85` `STALLING` boundary is an early warning — by the time `Aβ` crosses `1.0`, you've already wasted iterations.
|
|
103
103
|
|
|
104
|
-
These threshold defaults
|
|
104
|
+
These threshold defaults are derived from the Barkhausen-stability analysis and serve as reasonable starting points. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
|
|
105
105
|
|
|
106
106
|
---
|
|
107
107
|
|
|
@@ -234,5 +234,3 @@ Loop types this applies to in practice:
|
|
|
234
234
|
- **Code generation with linter/test feedback** — generate, run tests/linter, fix, repeat. Error = failing test count or linter violation count.
|
|
235
235
|
- **Multi-step reasoning loops** — ReAct-style think/act/observe iterations. Error = whatever the agent's quality assessor returns.
|
|
236
236
|
- **Custom feedback loops** — anything where you can produce a number that should drop toward zero as the loop succeeds.
|
|
237
|
-
|
|
238
|
-
See [loopgain.ai](https://loopgain.ai) for the longer write-up.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "loopgain"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "Barkhausen stability monitor for AI agent loops. Real-time loop-gain (Aβ) monitoring with five named threshold bands, best-so-far rollback, and ETA prediction."
|
|
9
9
|
authors = [{name = "Dave Fitzsimmons", email = "dave_fitz@icloud.com"}]
|
|
10
10
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|