activeagent 1.3.0 → 1.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 +22 -0
- data/lib/active_agent/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e041e8f2080b82e5b01648a83edfcfb7efa66cdfdb44fe814c4cca03e268816a
|
|
4
|
+
data.tar.gz: d6bcf308c34a8eb7522137275beaa286571fdc82c13cb91a0d8de9fa4609313f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9010a8e0f091c79757f282fd4f233b19468bfeb979fdecd4f00ad3b239bd60c3e39d159e17187444d56804fadde65ad748dd84fd7fb25fde9ecdfe3b081d257
|
|
7
|
+
data.tar.gz: 17c642804ffd9dc781bbb7a55fc5f68207fbb44ad68e836509aa3657d81767fee8d0138a29e53193fde58926e2c889dfa77461ba31372e95e5782f55adfb4b29
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.1] - 2026-08-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Traces record the user turn an agent renders from its template.** An
|
|
13
|
+
agent written the idiomatic way — `instructions:` plus `locals:`, with the
|
|
14
|
+
user message in the action's ERB — passed no `messages:`, so the
|
|
15
|
+
instrumentation had nothing to serialize and `prompt.input.messages` was
|
|
16
|
+
absent from its traces. The system prompt and the completion were both
|
|
17
|
+
captured, which made the gap easy to miss: a trace looked populated while
|
|
18
|
+
the half an evaluation scores, what the model was actually asked, was
|
|
19
|
+
missing. The instrumentation now falls back to the rendered parameters when
|
|
20
|
+
no explicit messages exist.
|
|
21
|
+
|
|
22
|
+
### Note on the 1.3.0 gem
|
|
23
|
+
|
|
24
|
+
`activeagent 1.3.0` was published from a tree that already carried the fix
|
|
25
|
+
above, so the released gem did not match the `v1.3.0` tag — the tag's source
|
|
26
|
+
would not reproduce it. This release contains no change relative to that
|
|
27
|
+
published gem; it exists so that the tag, `main` and the published gem agree
|
|
28
|
+
again. Upgrading from 1.3.0 is optional and changes no behaviour.
|
|
29
|
+
|
|
8
30
|
## [1.3.0] - 2026-08-18
|
|
9
31
|
|
|
10
32
|
### Added
|
data/lib/active_agent/version.rb
CHANGED