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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: loopgain
3
- Version: 0.1.2
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 work well for typical agent loops out of the box. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
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 work well for typical agent loops out of the box. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
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.
@@ -24,7 +24,7 @@ from loopgain.core import (
24
24
  )
25
25
  from loopgain.telemetry import build_payload as build_telemetry_payload
26
26
 
27
- __version__ = "0.1.2"
27
+ __version__ = "0.1.3"
28
28
 
29
29
  __all__ = [
30
30
  "LoopGain",
@@ -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. See https://loopgain.ai for the long-form write-up.
13
+ clean Python API.
14
14
 
15
15
  License: Apache-2.0
16
16
  """
@@ -28,7 +28,7 @@ if TYPE_CHECKING:
28
28
  SCHEMA_VERSION = 1
29
29
 
30
30
  # Library version (kept in sync with __init__.py).
31
- LIBRARY_VERSION = "0.1.2"
31
+ LIBRARY_VERSION = "0.1.3"
32
32
 
33
33
 
34
34
  def build_payload(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: loopgain
3
- Version: 0.1.2
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 work well for typical agent loops out of the box. Tune them per domain (via the `ThresholdBands` argument) once you have production traces.
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.2"
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