@modelprofile.com/flexharness 4.1.1 → 5.0.0
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.
- package/changelog.md +18 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.d.ts +3 -0
- package/dist_ts/classes.flexharness.js +75 -21
- package/dist_ts/interfaces.d.ts +13 -4
- package/package.json +2 -2
- package/readme.hints.md +3 -2
- package/readme.md +19 -3
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +106 -23
- package/ts/interfaces.ts +16 -4
package/changelog.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-21 - 5.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- stream exact text and reasoning part deltas (events)
|
|
8
|
+
- Replace cumulative part.delta payloads with exact untruncated deltas and incremental UTF-8 byte coordinates.
|
|
9
|
+
- Separate snapshot and delta event interfaces under TFlexPartEvent and remove IFlexPartChangedEvent.
|
|
10
|
+
- Emit empty part.started snapshots before the first text or reasoning delta.
|
|
11
|
+
|
|
12
|
+
## 2026-08-21 - 4.1.2
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- emit immediate snapshots for streamed tool outputs (tool-streaming)
|
|
17
|
+
- Bump @push.rocks/smartagent to ^5.0.1.
|
|
18
|
+
- Verify each distinct async-iterable tool output emits a bounded running part.updated snapshot, including the final yielded value.
|
|
19
|
+
- Update documentation for transient streamed tool output behavior.
|
|
20
|
+
|
|
3
21
|
## 2026-08-16 - 4.1.1
|
|
4
22
|
|
|
5
23
|
### Fixes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/flexharness',
|
|
6
|
-
version: '
|
|
6
|
+
version: '5.0.0',
|
|
7
7
|
description: 'Provider-neutral model-session runtime with durable history, permissions, typed events, and pluggable local or remote tool execution.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSwrQkFBK0I7SUFDckMsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVJQUF1STtDQUNySixDQUFBIn0=
|
|
@@ -217,6 +217,7 @@ export declare class FlexHarness<TScope = unknown> {
|
|
|
217
217
|
private onReasoningStart;
|
|
218
218
|
private onReasoningDelta;
|
|
219
219
|
private onReasoningEnd;
|
|
220
|
+
private textAppendAccounting;
|
|
220
221
|
private onToolStart;
|
|
221
222
|
private onToolFinish;
|
|
222
223
|
private onToolUpdate;
|
|
@@ -313,6 +314,8 @@ export declare class FlexHarness<TScope = unknown> {
|
|
|
313
314
|
private requireMessage;
|
|
314
315
|
private isTombstoned;
|
|
315
316
|
private emitPartEvent;
|
|
317
|
+
private emitPartDeltaEvent;
|
|
318
|
+
private partEventCoordinates;
|
|
316
319
|
private emitEvent;
|
|
317
320
|
private validateRuntimeEvent;
|
|
318
321
|
private projectBackgroundExecution;
|