activeagents-telemetry 0.3.0 → 0.3.1
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 +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/activeagents/telemetry/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abbd653e7fdf9bb8656ce12e2324c61ac2fe32c76ecfa1c0bc4465a14d15d4eb
|
|
4
|
+
data.tar.gz: 2de365d2249eb439cd598fdd508aa10d5b3b90421f580a45c3d77b04c547deba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87f70bf678ea9c3e7777be4837c5752d86ddc7e7ed42683a5c5d435367c687a822faf1e038ef9c6e2ca1483ac02457cb2c6a1259748a97fd33c724d2211f22b6
|
|
7
|
+
data.tar.gz: 1781ca860649b2e45b51e381a1f59ec2c3689415c3daba07ca5a86fcfff798412e3780531b199d79d75d1fe411b6a3f3cb1e700776d092c4ccb4b4b5ff08803d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.1] - 2026-09-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- The RubyLLM adapter reads token counts from a RubyLLM 2.x turn. 2.0 moved
|
|
8
|
+
the per-message readers (`input_tokens`, `output_tokens`, `thinking_tokens`)
|
|
9
|
+
to `message.tokens` and puts the round's `Tokens` on the `chat.ruby_llm`
|
|
10
|
+
payload; the adapter only knew the 1.x readers, so every 2.x trace reported
|
|
11
|
+
0 tokens while its spans, timings and errors were correct. The payload's
|
|
12
|
+
`tokens` is read first, then the round's messages with either generation's
|
|
13
|
+
readers, so 1.x traces are unchanged.
|
|
14
|
+
|
|
15
|
+
The core gem is republished at 0.3.1 with no changes, so the two gems stay on
|
|
16
|
+
one version.
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## [0.3.0] - 2026-09-12
|
|
4
20
|
|
|
5
21
|
### Added
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activeagents-telemetry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ActiveAgents
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
The wire format, configuration, and delivery layer behind ActiveAgents
|