lex-synapse 0.4.8 → 0.4.10
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: bd6f5da400b9147f271ec3072e98e8ef1efbe3591d98ad3bd8a3908630a34d09
|
|
4
|
+
data.tar.gz: 722bc9ac96db5bacae6d8e0723f138420f3794b83e015d44db8df683c759a2a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 743363f5855fc61423255bccd553c419f06705124debd8d5f378609d5e8da1c1a35e4f2a5f02027a9fc8c22648fc860fb18269fa1875ebf26d3bce177def2155
|
|
7
|
+
data.tar.gz: 351f68075a8ef8a13754324e6d829103b383b96bb6837c03add4b211dd181fe6cb67063c45dac630b5a352d661bfcd843d450689bab4c88a2acc10f59ab7e0b1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.10] - 2026-04-15
|
|
4
|
+
### Changed
|
|
5
|
+
- Set `mcp_tools?` and `mcp_tools_deferred?` to `false` — internal infrastructure extension, not an LLM-callable tool
|
|
6
|
+
|
|
7
|
+
## [0.4.9] - 2026-04-06
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- fix Process namespace collision by using ::Process prefix for CLOCK_MONOTONIC
|
|
11
|
+
|
|
3
12
|
## [0.4.8] - 2026-03-31
|
|
4
13
|
|
|
5
14
|
### Added
|
|
@@ -23,7 +23,7 @@ module Legion
|
|
|
23
23
|
return { success: false, error: 'synapse not active' } unless Helpers::Confidence::EVALUABLE_STATUSES.include?(synapse.status)
|
|
24
24
|
|
|
25
25
|
mode = Helpers::Confidence.autonomy_mode(synapse.confidence)
|
|
26
|
-
start_time = Process.clock_gettime(Process::CLOCK_MONOTONIC, :millisecond)
|
|
26
|
+
start_time = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC, :millisecond)
|
|
27
27
|
|
|
28
28
|
# Step 1: Attention check
|
|
29
29
|
attention_result = check_attention(synapse, payload, mode, conditioner_client)
|
|
@@ -35,7 +35,7 @@ module Legion
|
|
|
35
35
|
{ success: attention_result[:passed], result: payload }
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
-
elapsed = Process.clock_gettime(Process::CLOCK_MONOTONIC, :millisecond) - start_time
|
|
38
|
+
elapsed = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC, :millisecond) - start_time
|
|
39
39
|
|
|
40
40
|
# Step 3: Record signal
|
|
41
41
|
record_signal(synapse, attention_result[:passed], transform_result[:success], elapsed)
|