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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe9ec7ae7a6a457e50b5da5ec21640978ce363718236c64b3eb0b1a16fe1b7f7
4
- data.tar.gz: f225f754c6365b3bc7b75d683e9f8684954e68d2b8b69e010c51b2b7f04485bc
3
+ metadata.gz: abbd653e7fdf9bb8656ce12e2324c61ac2fe32c76ecfa1c0bc4465a14d15d4eb
4
+ data.tar.gz: 2de365d2249eb439cd598fdd508aa10d5b3b90421f580a45c3d77b04c547deba
5
5
  SHA512:
6
- metadata.gz: d7e70e2daef1faa3527d61fcd303f6783cbac2ce32da62c5cf053fc215dc5e602a166b6b9791bee256f041a04474557e75719563f1a3e077b8218650a3296704
7
- data.tar.gz: a0b55b62db84a92e41cff0ad30edc2b420fff2a947d10665f9acaf8938bb469068cc797940e89a7d3ed53a5a0ec25efc95a738b4b1c395b6b1ecb56a083dec81
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveAgents
4
4
  module Telemetry
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
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.0
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-13 00:00:00.000000000 Z
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