lex-agentic-inference 0.1.10 → 0.1.11
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1f50bf66664bcdee5e444a4b0fcde83953fb040d387fdb4c334b00d9410b74d
|
|
4
|
+
data.tar.gz: fb0bfb4cba7f06a6de06179f0dd879a17854bf5e532fe8273f6f058f1912c2be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df96d191230ff4dc7ba69b8c2effb445c26e6a8dafefaae46dd30bc1fcb365908fe800c527f54ecac786fd8c42b46f97790e23dcc110c769b84a7c2707b196c6
|
|
7
|
+
data.tar.gz: cd098aea29e07d96434a2a45012f5affb91637c05ba551e8bcd29eb9aeb1d5d41a2f184e91d3ce7d426fe07501776dc4966bcbdfe918b6dd3b45adb2329dff70
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.11] - 2026-07-23
|
|
4
|
+
### Fixed
|
|
5
|
+
- Move `prediction_store` accessor into `Runners::Prediction` module so it works when extended onto RunnerHost (fixes NoMethodError during GAIA heartbeat tick)
|
|
6
|
+
- Remove `private` keyword from runner methods — runner modules must be fully accessible when extended
|
|
7
|
+
|
|
3
8
|
## [0.1.10] - 2026-07-16
|
|
4
9
|
### Added
|
|
5
10
|
- Per-identity prediction store and rolling accuracy: `PredictionStore` is now keyed by `identity:`, isolating each partner's predictions and outcomes
|
|
@@ -104,7 +104,10 @@ module Legion
|
|
|
104
104
|
result
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
def prediction_store(identity: nil)
|
|
108
|
+
@prediction_stores ||= {}
|
|
109
|
+
@prediction_stores[identity] ||= Helpers::PredictionStore.new(identity: identity)
|
|
110
|
+
end
|
|
108
111
|
|
|
109
112
|
def estimate_confidence(mode, context)
|
|
110
113
|
base = case mode
|